Skip to content

Commit

Permalink
Remove building rakaly header into windows artifact (#30)
Browse files Browse the repository at this point in the history
More than just windows developers need this header 😅
  • Loading branch information
nickbabcock authored Nov 1, 2024
1 parent 3fb0358 commit 5ddd1ff
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ jobs:
path: ${{ env.ASSET }}
name: ${{ env.ASSET }}
if-no-files-found: error
- uses: actions/upload-artifact@v4
with:
path: target/rakaly.h
name: rakaly.h
if-no-files-found: error
overwrite: true

release:
needs: test
Expand All @@ -115,11 +121,7 @@ jobs:
mkdir artifacts
cd artifacts-temp
for i in *; do
if [[ "$i" = *windows* ]]; then
7z a "../artifacts/$(basename "$i").zip" "$i"
else
tar czf "../artifacts/$(basename "$i").tar.gz" "$i"
fi
tar czf "../artifacts/$(basename "$i").tar.gz" "$i"
done
ls -lR ../artifacts
- name: Create Release
Expand Down

0 comments on commit 5ddd1ff

Please sign in to comment.