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 c14127b commit 7a3758cCopy full SHA for 7a3758c
.github/workflows/run-release.yml
@@ -52,11 +52,9 @@ jobs:
52
RELEASE_BUCKET: ${{ secrets.RELEASE_BUCKET }}
53
PUBLISHING_ROLE_ARN: ${{ secrets.PUBLISHING_ROLE_ARN }}
54
run: |
55
- exit 1
56
./scripts/release.sh
57
58
- name: Delete failed release tag
59
if: ${{ failure() }}
60
61
- exit 0
62
git push --delete origin ${{ steps.resolve-version.outputs.NEW_VERSION }}
scripts/release.sh
@@ -29,6 +29,7 @@ fi
29
30
echo "releasing version $VERSION"
31
32
-./gradlew -Prelease.version=$VERSION publishAllPublicationsToReleaseRepository
+exit 0
33
+#./gradlew -Prelease.version=$VERSION publishAllPublicationsToReleaseRepository
34
35
0 commit comments