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 d8c88b8 commit f8b4d1cCopy full SHA for f8b4d1c
.github/workflows/release.yml
@@ -0,0 +1,20 @@
1
+name: Release
2
+on:
3
+ push:
4
+ branches: [master, main]
5
+ tags: ["*"]
6
+jobs:
7
+ publish:
8
+ runs-on: ubuntu-20.04
9
+ steps:
10
+ - uses: actions/checkout@v2.3.4
11
+ with:
12
+ fetch-depth: 0
13
+ - uses: olafurpg/setup-scala@v10
14
+ - uses: olafurpg/setup-gpg@v3
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