Skip to content

Commit

Permalink
Release Action: Use the correct download URL
Browse files Browse the repository at this point in the history
This should hopefully correctly download the TGZ file in the deployment
step. If it really works, we will only see on the next release.
  • Loading branch information
splitbrain committed Apr 4, 2023
1 parent 5399538 commit fac3e3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-build.yml
Expand Up @@ -82,7 +82,7 @@ jobs:
outputs:
version: ${{ env.current_version }}
file: ${{ env.current_file }}
url: ${{ steps.release.outputs.url }}
url: ${{ fromJSON(steps.release.outputs.assets)[0].browser_download_url }}

deploy:
name: Deploy Release
Expand All @@ -91,7 +91,7 @@ jobs:
steps:
- name: Download
run: |
wget ${{ needs.build.outputs.url }}/dokuwiki-${{ needs.build.outputs.file }}.tgz
wget ${{ needs.build.outputs.url }} -O dokuwiki-${{ needs.build.outputs.file }}.tgz
- name: Setup SSH Key
uses: shimataro/ssh-key-action@v2
Expand Down

0 comments on commit fac3e3e

Please sign in to comment.