Skip to content

Commit

Permalink
chore: fix zip workflow (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
rvazarkar authored Mar 4, 2025
1 parent 9fc1eb9 commit 520955a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Zip
if: "! startsWith(github.event_name, 'pull_request')"
run: 7z a -tzip -mx9 SharpHound${{ matrix.release.suffix }}.zip $PWD/bin/${{ matrix.release.type }}/net462/*
run: 7z a -tzip -mx9 SharpHound${{ matrix.release.suffix }}.zip $PWD/bin/${{ matrix.release.type }}/net472/*

- name: Update Rolling Release
if: "! startsWith(github.event_name, 'pull_request')"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
dotnet build -c ${{ matrix.release.type }} -p:Version=${VERSION:1}
- name: Zip
run: 7z a -tzip -mx9 SharpHound-${{ github.ref_name }}${{ matrix.release.suffix }}.zip $PWD/bin/${{ matrix.release.type }}/net462/*
run: 7z a -tzip -mx9 SharpHound-${{ github.ref_name }}${{ matrix.release.suffix }}.zip $PWD/bin/${{ matrix.release.type }}/net472/*

- name: Upload to Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 520955a

Please sign in to comment.