Skip to content

Commit

Permalink
Merge pull request #10430 from nextcloud/backport/10429/stable3.7
Browse files Browse the repository at this point in the history
[stable3.7] fix(release): missing certificate causing an invalid signature
  • Loading branch information
st3iny authored Nov 29, 2024
2 parents 9a0ef41 + 9f839e3 commit 587f258
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/appstore-conventional-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
id: server-checkout
run: |
NCVERSION=${{ fromJSON(steps.appinfo.outputs.result).nextcloud.min-version }}
wget --quiet https://download.nextcloud.com/server/releases/latest-$NCVERSION.zip -o build/nextcloud.zip
wget --quiet https://download.nextcloud.com/server/releases/latest-$NCVERSION.zip -O build/nextcloud.zip
unzip build/nextcloud.zip build/nextcloud
- name: Checkout server master fallback
Expand All @@ -124,7 +124,7 @@ jobs:
cd ../../
# Setting up keys
echo "${{ secrets.APP_PRIVATE_KEY }}" > build/${{ env.APP_NAME }}.key
wget --quiet "https://github.com/nextcloud/app-certificate-requests/raw/master/${{ env.APP_NAME }}/${{ env.APP_NAME }}.crt" -o build/${{ env.APP_NAME }}.crt
wget --quiet "https://github.com/nextcloud/app-certificate-requests/raw/master/${{ env.APP_NAME }}/${{ env.APP_NAME }}.crt" -O build/${{ env.APP_NAME }}.crt
pwd
ls -l
ls -l build
Expand Down

0 comments on commit 587f258

Please sign in to comment.