We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4452d29 commit 146a72aCopy full SHA for 146a72a
.github/workflows/main.yml
@@ -0,0 +1,20 @@
1
+name: Release
2
+on:
3
+ push:
4
+ branches: [main]
5
+ tags: ["*"]
6
+jobs:
7
+ publish:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - uses: olafurpg/setup-scala@v13
12
+ - uses: olafurpg/setup-gpg@v3
13
+ - run: git fetch --unshallow
14
+ - name: Publish ${{ github.ref }}
15
+ run: sbt ci-release
16
+ env:
17
+ PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
18
+ PGP_SECRET: ${{ secrets.PGP_SECRET }}
19
+ SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
20
+ SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
0 commit comments