Skip to content

Commit 520955a

Browse files
authored
chore: fix zip workflow (#139)
1 parent 9fc1eb9 commit 520955a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

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

4444
- name: Update Rolling Release
4545
if: "! startsWith(github.event_name, 'pull_request')"

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
dotnet build -c ${{ matrix.release.type }} -p:Version=${VERSION:1}
4040
4141
- name: Zip
42-
run: 7z a -tzip -mx9 SharpHound-${{ github.ref_name }}${{ matrix.release.suffix }}.zip $PWD/bin/${{ matrix.release.type }}/net462/*
42+
run: 7z a -tzip -mx9 SharpHound-${{ github.ref_name }}${{ matrix.release.suffix }}.zip $PWD/bin/${{ matrix.release.type }}/net472/*
4343

4444
- name: Upload to Release
4545
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)