Skip to content

Commit

Permalink
fix java mins
Browse files Browse the repository at this point in the history
  • Loading branch information
yuzawa-san committed Aug 1, 2023
1 parent caeb0a7 commit 6209d24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,9 @@ jobs:
run: echo ::set-output name=filename::$(basename $(find build/distributions -name "*.deb"))
- name: Upload to Packagecloud
run: |
bundle exec package_cloud push yuzawa-san/googolplex-theater/raspbian/buster ./build/distributions/${{ steps.get_deb.outputs.filename }}
bundle exec package_cloud push yuzawa-san/googolplex-theater/raspbian/bullseye ./build/distributions/${{ steps.get_deb.outputs.filename }}
bundle exec package_cloud push yuzawa-san/googolplex-theater/raspbian/bookworm ./build/distributions/${{ steps.get_deb.outputs.filename }}
bundle exec package_cloud push yuzawa-san/googolplex-theater/ubuntu/focal ./build/distributions/${{ steps.get_deb.outputs.filename }}
bundle exec package_cloud push yuzawa-san/googolplex-theater/ubuntu/bionic ./build/distributions/${{ steps.get_deb.outputs.filename }}
bundle exec package_cloud push yuzawa-san/googolplex-theater/ubuntu/jammy ./build/distributions/${{ steps.get_deb.outputs.filename }}
env:
PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:17-jre-focal
FROM eclipse-temurin:20-jre-jammy
WORKDIR /opt/googolplex-theater
COPY build/install/googolplex-theater-boot/ .
EXPOSE 8000
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ buildDeb {
into '/opt/googolplex-theater'
user 'googolplex-theater'
permissionGroup 'googolplex-theater'
requires("default-jre-headless")
requires("openjdk-17-jre-headless")
from("${project.buildDir}/install/googolplex-theater-boot") {
exclude 'conf'
exclude 'service'
Expand Down

0 comments on commit 6209d24

Please sign in to comment.