Skip to content

Commit

Permalink
fix upload
Browse files Browse the repository at this point in the history
  • Loading branch information
antony-jr committed Nov 17, 2023
1 parent 50497af commit 26eac9d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
- name: Make Output Directory
run: |
mkdir -p ${{github.workspace}}/output/QArchive
mkdir -p ${{github.workspace}}/upload
- name: Compile and Test
run: |
Expand All @@ -53,13 +52,13 @@ jobs:
- name: Zip Files
run: |
cd ${{ github.workspace }}/output/
7z a ${{ github.workspace }}/upload/windows-Qt-5.15.2-${{ matrix.platform }}.zip QArchive
7z a windows-Qt-5.15.2-${{ matrix.platform }}.zip QArchive
- name: Upload Bundles
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}/upload/windows-Qt-5.15.2-${{ matrix.platform }}.zip
file: ${{ github.workspace }}/output/windows-Qt-5.15.2-${{ matrix.platform }}.zip
tag: prebuilt
overwrite: true
prerelease: true
Expand Down

0 comments on commit 26eac9d

Please sign in to comment.