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 c60565f commit 464ae48Copy full SHA for 464ae48
1 file changed
.github/workflows/appstore-build-publish.yml
@@ -171,7 +171,10 @@ jobs:
171
cd ../../../
172
# Setting up keys
173
echo '${{ secrets.APP_PRIVATE_KEY }}' > ${{ env.APP_NAME }}.key
174
- wget --quiet "https://github.com/nextcloud/app-certificate-requests/raw/master/${{ env.APP_NAME }}/${{ env.APP_NAME }}.crt"
+ curl --fail --show-error --location \
175
+ --retry 5 --retry-all-errors --retry-delay 2 \
176
+ --output ${{ env.APP_NAME }}.crt \
177
+ "https://raw.githubusercontent.com/nextcloud/app-certificate-requests/master/${{ env.APP_NAME }}/${{ env.APP_NAME }}.crt"
178
# Signing
179
php nextcloud/occ integrity:sign-app --privateKey=../${{ env.APP_NAME }}.key --certificate=../${{ env.APP_NAME }}.crt --path=../${{ env.APP_NAME }}/build/artifacts/${{ env.APP_NAME }}
180
# Rebuilding archive
0 commit comments