Skip to content

Commit

Permalink
Try to wire signing into publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Layoric committed Oct 12, 2023
1 parent f7181a7 commit e07830b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-android-maven-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
echo "${{ secrets.OSSRH_GPG }}" > private-key.asc
gpg --import --batch private-key.asc
echo "SIGNING_KEY=`cat $(pwd)/private-key.asc`" >> $GITHUB_ENV
echo "SIGNING_KEY=$(cat ./private-key.asc)" >> $GITHUB_ENV
- name: Cache Gradle packages
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-client-maven-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
echo "${{ secrets.OSSRH_GPG }}" > private-key.asc
gpg --import --batch private-key.asc
echo "SIGNING_KEY=`cat $(pwd)/private-key.asc`" >> $GITHUB_ENV
echo "SIGNING_KEY=$(cat ./private-key.asc)" >> $GITHUB_ENV
- name: Cache Gradle packages
uses: actions/cache@v2
Expand Down

0 comments on commit e07830b

Please sign in to comment.