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 0e6e365 commit f237c07Copy full SHA for f237c07
.github/workflows/publish.yml
@@ -18,8 +18,14 @@ jobs:
18
java-version: 11
19
cache: sbt
20
- uses: sbt/setup-sbt@v1
21
+ - name: Import GPG key
22
+ id: import_gpg
23
+ uses: crazy-max/ghaction-import-gpg@v5
24
+ with:
25
+ gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
26
+ passphrase: ${{ secrets.GPG_PRIVATE_KEY_PASSWORD }}
27
- name: Build and publish maven artifacts
- run: sbt "+clean; +publish"
28
+ run: sbt "+clean; +publishSigned"
29
- name: Setup buildx builder
30
uses: docker/setup-buildx-action@v3
31
with:
0 commit comments