Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shdwmtr committed Aug 3, 2024
1 parent 5c03a4c commit 00eabdd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,14 @@ jobs:
- name: Proccess Artifacts
run: |
mkdir -p ./artifacts/release
zip -r ./artifacts/release/millennium-v${{ steps.read_version.outputs.version }}-windows-x86_64.zip ./artifacts/windows/*
zip -r ./artifacts/release/millennium-v${{ steps.read_version.outputs.version }}-linux-x86_64.zip ./artifacts/linux/*
cd ./artifacts/windows
zip -r ../release/millennium-v${{ steps.read_version.outputs.version }}-windows-x86_64.zip .
cd - # return to the original directory
cd ./artifacts/linux
zip -r ../release/millennium-v${{ steps.read_version.outputs.version }}-linux-x86_64.zip .
cd - # return to the original directory
- name: Create GitHub Release
run: npx semantic-release
Expand Down

0 comments on commit 00eabdd

Please sign in to comment.