Skip to content

Merge pull request #30 from CyberGear/concourse_compatable_reports #40

Merge pull request #30 from CyberGear/concourse_compatable_reports

Merge pull request #30 from CyberGear/concourse_compatable_reports #40

Workflow file for this run

name: Release
on:
push:
branches: [ master, main ]
tags: [ "*" ]
jobs:
publish:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
- name: Publish ${{ github.ref }}
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 }}