Update sbt-pgp to 2.3.1 #1327
Workflow file for this run
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: Build | |
on: [ push, pull_request ] | |
defaults: | |
run: | |
shell: nix develop -v -c bash {0} | |
jobs: | |
build: | |
name: Build | |
runs-on: [ self-hosted, nix, chopsticks, amd64-linux, medium ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set environment variables | |
run: | | |
echo "PROTOC_CACHE=${XDG_CACHE_HOME}/protoc_cache" >> "${GITHUB_ENV}" | |
echo "COURSIER_CACHE=${XDG_CACHE_HOME}/coursier" >> "${GITHUB_ENV}" | |
echo "SBT_OPTS=-Dsbt.global.base=${XDG_CACHE_HOME}/sbt -Dsbt.ivy.home=${XDG_CACHE_HOME}/ivy -Xmx4g -Xss6m -XX:-UseContainerSupport" >> "${GITHUB_ENV}" | |
- name: Check code quality | |
run: | | |
sbt --client 'set ThisBuild / scalacOptions ++= Seq("-Werror")' | |
sbt --client cq | |
- name: Compile | |
run: sbt --client compile | |
- name: Compile tests | |
run: sbt --client 'Test / compile' | |
# - name: Debug | |
# run: | | |
# trap : TERM INT; sleep infinity & wait | |
- name: Test | |
run: sbt --client test | |
- name: Publish | |
if: github.ref == 'refs/heads/master' | |
env: | |
PGP_SIGNING_KEY: ${{ secrets.PGP_SIGNING_KEY }} | |
PGP_SIGNING_KEY_FP: ${{ secrets.PGP_SIGNING_KEY_FP }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
run: | | |
printenv PGP_SIGNING_KEY | base64 -d | gpg --import | |
./release.sh publish |