Multi-arch image in docker hub (#3975) #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Artifacts | |
on: | |
push: | |
branches: | |
- 'version-1.*.*' | |
jobs: | |
update-graph: | |
name: Update Dependency Graph | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: scalacenter/sbt-dependency-submission@v3 | |
with: | |
configs-ignore: test compile-internal provided | |
publish-snapshot: | |
name: Publish Snapshots to Sonatype | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: 'sbt' | |
gpg-private-key: ${{ secrets.OSSRH_GPG_KEY }} | |
gpg-passphrase: ${{ secrets.OSSRH_GPG_PASSPHRASE }} | |
- uses: sbt/setup-sbt@v1 | |
- name: Publish snapshots | |
env: | |
SONATYPE_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
PGP_PASSPHRASE: ${{ secrets.OSSRH_GPG_PASSPHRASE }} | |
run: | | |
version=$(echo ${{ github.ref }} | awk -F '[-.]' '{print $2"."$3}')-SNAPSHOT | |
sbt -Dproject.version=$version --mem 4096 --batch publishSigned |