Skip to content

Commit

Permalink
Fix path to binaries in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhelle committed Apr 13, 2023
1 parent d23f452 commit 457608f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Binaries (x64)
path: Source/Binaries/Release/x64/**/*
path: Source/Artifacts/SQLCEQueryAnalyzer-Binaries-x64.zip

- name: Publish artifacts
uses: actions/upload-artifact@v3
Expand All @@ -55,7 +55,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Binaries (x86)
path: Source/Binaries/Release/x86/**/*
path: Source/Artifacts/SQLCEQueryAnalyzer-Binaries-x86.zip

publish:

Expand Down Expand Up @@ -106,8 +106,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: artifacts/Binaries (x64)/Binaries (x64).zip
asset_name: Binaries (x64).zip
asset_path: artifacts/Binaries (x64)/SQLCEQueryAnalyzer-Binaries-x64.zip
asset_name: SQLCEQueryAnalyzer-Binaries-x64.zip
asset_content_type: application/zip

- name: Upload Installer (x86) asset
Expand All @@ -126,6 +126,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: artifacts/Binaries (x86)/Binaries (x86).zip
asset_name: Binaries (x86).zip
asset_path: artifacts/Binaries (x86)/SQLCEQueryAnalyzer-Binaries-x86.zip
asset_name: SQLCEQueryAnalyzer-Binaries-x86.zip
asset_content_type: application/zip

0 comments on commit 457608f

Please sign in to comment.