Skip to content

Commit

Permalink
publish jdk 11
Browse files Browse the repository at this point in the history
  • Loading branch information
dwickern committed Nov 4, 2023
1 parent 07cc708 commit b9b4654
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,23 @@ on:
jobs:
publish:
runs-on: ubuntu-20.04
strategy:
matrix:
java-version: [ 8, 11 ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
java-version: ${{ matrix.java-version }}
cache: sbt
- run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
CI_RELEASE: publishSignedJdk8
CI_SNAPSHOT_RELEASE: publishJdk8
CI_RELEASE: publishSignedJdk${{ matrix.java-version }}
CI_SNAPSHOT_RELEASE: publishJdk${{ matrix.java-version }}

0 comments on commit b9b4654

Please sign in to comment.