Skip to content

v0.0.3

v0.0.3 #10

Workflow file for this run

name: Release
on:
release:
types:
- released
workflow_dispatch: {}
jobs:
publish:
name: 'Publish release'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-java@v1
with:
java-version: 8
- name: 'Print versions'
run: |
java -version
gpg --version
- name: 'Publish'
run: sbt 'show version' clean compile ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}