Skip to content

Did it migrate to the new host? #37

Did it migrate to the new host?

Did it migrate to the new host? #37

Workflow file for this run

name: Release
on:
push:
branches: [master, update-release-flow]
tags: ["*"]
jobs:
release:
runs-on: ubuntu-latest
if: github.repository == 'scapegoat-scala/sbt-scapegoat'
steps:
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow
- uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 8
- run: |
echo ${PGP_SECRET:0:4}...${PGP_SECRET: -4}
sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{secrets.SONATYPE_PASSWORD}}
SONATYPE_USERNAME: ${{secrets.SONATYPE_USERNAME}}