Skip to content

Commit

Permalink
try zip fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihozpolat committed Jul 30, 2024
1 parent 6df2511 commit 71c1749
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- name: Build
run: dotnet publish --configuration Release --output ./publish
- name: Create Zip Archive
run: 7z a $GITHUB_SHA.zip ./publish/*
run: 7z a ./publish.zip ./publish/*
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ./$GITHUB_SHA.zip
files: ./publish.zip
tag_name: ${{ github.ref }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 71c1749

Please sign in to comment.