We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ab807f commit 91d6a41Copy full SHA for 91d6a41
.github/workflows/release.yml
@@ -0,0 +1,19 @@
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
+ - run: sbt ci-release
15
+ env:
16
+ PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
17
+ PGP_SECRET: ${{ secrets.PGP_SECRET }}
18
+ SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
19
+ SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
0 commit comments