We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fd68fd commit 0fdadbdCopy full SHA for 0fdadbd
.github/workflows/publish.yml
@@ -31,6 +31,9 @@ jobs:
31
- name: Setup Gradle
32
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
33
34
+ - name: Set up GPG
35
+ uses: olafurpg/setup-gpg@v3
36
+
37
# Step to grant execute permissions to the Gradle wrapper script
38
- name: Grant execute permission for gradlew
39
run: chmod +x gradlew
@@ -47,6 +50,9 @@ jobs:
47
50
- name: Add signing password to gradle.proeprties
48
51
run: echo "signing.password=${{ secrets.OSS_SIGNING_PASSWORD }}" >> gradle.properties
49
52
53
+ - name: create secring.gpg file
54
+ run: gpg --export-secret-keys -o secring.gpg
55
56
- name: Decode and set up GPG secring file
57
env:
58
GPG_SECRET_RING: ${{ secrets.SECRET_FILE_CONTENT }}
0 commit comments