Skip to content

Commit

Permalink
ci: Fix Windows binary location
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddiM8 committed Oct 3, 2024
1 parent 84ef79f commit b85f72d
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ jobs:
[ ! -f /c/Users/runneradmin/.cargo/bin/cargo-wix.exe ] && cargo install cargo-wix --version 0.3.1
cd cli
cargo wix --no-build --nocapture
mkdir build
mv target/wix/*.msi build/kalker-windows.msi
mkdir ../build
mv target/wix/*.msi ../build/kalker-windows.msi
- uses: actions/upload-artifact@v4
with:
name: win64
Expand Down Expand Up @@ -212,17 +212,8 @@ jobs:
if: always()
needs: [release_linux, release_mac, release_windows]
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false
- name: Download Artifact
uses: actions/download-artifact@v4
with:
Expand All @@ -231,4 +222,4 @@ jobs:
- name: Upload Assets
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create ${{ github.ref_name }} build/**/*
run: gh release create ${{ github.ref_name }} build/*

0 comments on commit b85f72d

Please sign in to comment.