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 60d8c6f commit 9260957Copy full SHA for 9260957
.github/workflows/ci.yml
@@ -32,3 +32,18 @@ jobs:
32
shell: bash
33
- name: Test virtualenv
34
run: scripts/virtualenv_test.sh 0.5.2
35
+ publish:
36
+ runs-on: ubuntu-latest
37
+ needs: [test]
38
+ if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
39
+ steps:
40
+ - uses: actions/checkout@v3
41
+ with:
42
+ fetch-depth: 0
43
+ - uses: olafurpg/setup-scala@v13
44
+ - run: sbt ci-release
45
+ env:
46
+ PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
47
+ PGP_SECRET: ${{ secrets.PGP_SECRET }}
48
+ SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
49
+ SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
.github/workflows/release.yml
0 commit comments