Skip to content

Commit

Permalink
star zip in root as well
Browse files Browse the repository at this point in the history
  • Loading branch information
erikrose100 committed May 9, 2024
1 parent 8cd2de8 commit 506c38c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/dotnet-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ jobs:
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
clang zlib1g-dev
- run: sudo mkdir ~/app && sudo mkdir ./linux
- run: sudo mkdir ~/app
- name: Compile exectuable
run: sudo dotnet publish -r linux-x64 -c Release -o ~/app/ CloseAsteroids.csproj
- name: Zip executable
run: zip -r ./linux/linux-x64.zip ~/app/
run: zip -r linux-x64.zip ~/app/
- name: Download All Artifacts
uses: actions/download-artifact@v4
- name: Release
Expand All @@ -84,6 +84,7 @@ jobs:
token: ${{ secrets.RELEASE_TOKEN }}
generate_release_notes: true
files: |
*.zip
*/*.zip
- name: Delete artifacts
uses: geekyeggo/delete-artifact@v5
Expand Down

0 comments on commit 506c38c

Please sign in to comment.