Skip to content

Commit

Permalink
fix(release): missing certificate causing an invalid signature
Browse files Browse the repository at this point in the history
It should be -O not -o. The flag -o will redirect the log instead of
writing the downloaded output file.

Signed-off-by: Richard Steinmetz <[email protected]>
  • Loading branch information
st3iny committed Nov 29, 2024
1 parent 9a0ef41 commit 9f839e3
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 9f839e3

Please sign in to comment.