Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# TODO: needs build step
sha256sum bin/lucky | awk '{print $1}' > ./bin/checksums.txt
tar -czvf lucky-$GITHUB_REF_NAME-linux-amd64.tar.gz -C ./bin .
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: linux
path: lucky-${{ github.ref_name }}-linux-amd64.tar.gz
Expand All @@ -42,7 +42,7 @@ jobs:
shards build lucky --without-development --no-debug --release --static
(Get-FileHash ./bin/lucky).Hash | Out-File ./bin/checksums.txt
Compress-Archive -Path ./bin/* -DestinationPath lucky-$env:GITHUB_REF_NAME-windows-amd64.zip
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: windows
path: lucky-${{ github.ref_name }}-windows-amd64.zip
Expand Down