Skip to content

Merge pull request #305 from uptane/update-akka #50

Merge pull request #305 from uptane/update-akka

Merge pull request #305 from uptane/update-akka #50

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
release-to-nexus:
name: Release Jars
runs-on: ubuntu-latest
env:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_CLIENT_ID }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_SECRET }}
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET_KEY: ${{ secrets.PGP_SECRET_KEY }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: coursier/setup-action@v1
with:
jvm: 'temurin:1.17.0.3'
- uses: coursier/cache-action@v6
- run: echo $PGP_SECRET_KEY | base64 --decode | gpg --batch --import
- run: sbt '+publishSigned ; sonatypeBundleRelease'