We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a96ee19 commit 4c3c5f3Copy full SHA for 4c3c5f3
1 file changed
.github/workflows/publish.yml
@@ -41,13 +41,14 @@ jobs:
41
env:
42
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
43
run: ./gradlew --info --stacktrace prepareCentralBundle
44
- - name: Upload bundle to Central Portal
+
45
+ - name: Grant execute permission for upload script
46
+ run: chmod +x .github/scripts/upload_central.sh
47
+ - name: Upload bundle via Central Publisher API (USER_MANAGED)
48
+ run: .github/scripts/upload_central.sh "android-native/build/central-bundle.zip"
49
50
CENTRAL_USERNAME: ${{ secrets.OSSRH_USERNAME }}
51
CENTRAL_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
- run: |
- chmod +x .github/scripts/upload_central.sh
- .github/scripts/upload_central.sh build/central-bundle.zip
52
53
- name: Tag and update version
54
run: |
0 commit comments