Update semanticdb-scalac to 4.9.3 (#832) #396
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: Release | |
on: | |
push: | |
branches: [master] | |
tags: ["*"] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
if: github.repository == 'scapegoat-scala/scapegoat' | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git fetch --prune --unshallow | |
- uses: olafurpg/setup-scala@v14 | |
with: | |
java-version: [email protected] | |
- run: | | |
sudo apt-get update && sudo apt-get -y install gnupg2 | |
mkdir ~/.gnupg && chmod 700 ~/.gnupg | |
echo use-agent >> ~/.gnupg/gpg.conf | |
echo pinentry-mode loopback >> ~/.gnupg/gpg.conf | |
echo allow-loopback-pinentry >> ~/.gnupg/gpg-agent.conf | |
chmod 600 ~/.gnupg/* | |
echo RELOADAGENT | gpg-connect-agent | |
echo $PGP_SECRET | base64 --decode | gpg --import --no-tty --batch --yes | |
env: | |
PGP_SECRET: ${{secrets.PGP_SECRET}} | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.ivy2/cache | |
key: ivy-${{hashFiles('**/*.sbt')}} | |
restore-keys: | | |
ivy- | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.sbt | |
key: sbt-${{hashFiles('**/*.sbt')}}-${{hashFiles('project/build.properties')}} | |
restore-keys: | | |
sbt- | |
- 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}} |