Skip to content

Commit

Permalink
fix: correct windows runner build path
Browse files Browse the repository at this point in the history
  • Loading branch information
solsticedhiver committed Nov 22, 2023
1 parent aebdffe commit cf1a828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- run: flutter config --enable-windows-desktop
- run: flutter build windows --release
- name: Rename main folder
run: mv build/windows/runner/Release build/windows/runner/flarte-${{ steps.version.outputs.version }}
run: mv build/windows/x64/runner/Release build/windows/x64/runner/flarte-${{ steps.version.outputs.version }}
shell: bash
- name: Archive Release
uses: thedoctor0/[email protected]
Expand All @@ -45,7 +45,7 @@ jobs:
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "build/windows/runner/flarte-windows_x64.zip"
artifacts: "build/windows/x64/runner/flarte-windows_x64.zip"
token: "${{ secrets.GH_TOKEN }}"
tag: "v${{ steps.version.outputs.version }}"
commit: "${{ github.sha }}"

0 comments on commit cf1a828

Please sign in to comment.