Skip to content

Commit

Permalink
[test] Update common files for branch master
Browse files Browse the repository at this point in the history
Co-authored-by: micronaut-build <micronaut-build@users.noreply.github.com>
  • Loading branch information
micronaut-build and micronaut-build authored Jun 22, 2020
1 parent e1f5865 commit 49ca1a8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/central-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,11 @@ jobs:
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
GPG_PASSWORD: ${{ secrets.GPG_PASSWORD }}
GPG_FILE: ${{ secrets.GPG_FILE }}
run: echo $GPG_FILE | base64 -d > secring.gpg && ./gradlew publish closeAndReleaseRepository
PUBLISH_IN_2_STEPS: ${{ secrets.PUBLISH_IN_2_STEPS }}
run: |
echo $GPG_FILE | base64 -d > secring.gpg
if [ -z ${PUBLISH_IN_2_STEPS+x} ]; then
./gradlew publish closeAndReleaseRepository
else
./gradlew publish && ./gradlew closeAndReleaseRepository
fi

0 comments on commit 49ca1a8

Please sign in to comment.