Unify Package step across all platforms: cp to dist then tar/zip #5
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release Windows Binary | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Build | |
| run: cargo build --release | |
| - name: Package | |
| run: | | |
| mkdir -p dist | |
| cp target/release/werss-cli.exe dist/werss-cli-windows-x86_64.exe | |
| powershell -Command "Compress-Archive -Path dist/werss-cli-windows-x86_64.exe -DestinationPath dist/werss-cli-windows-x86_64.zip" | |
| powershell -Command "(Get-FileHash dist/werss-cli-windows-x86_64.zip -Algorithm SHA256).Hash | Set-Content dist/werss-cli-windows-x86_64.zip.sha256" | |
| - name: Upload Release Asset | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| dist/werss-cli-windows-x86_64.zip | |
| dist/werss-cli-windows-x86_64.zip.sha256 | |
| generate_release_notes: true |