Skip to content

Commit

Permalink
bug in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Brennan1994 committed Oct 16, 2024
1 parent 7afd0f1 commit 46df63a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:
- name: Create 7z SFX (self-extracting) archive
shell: pwsh
run: |
$7Z_OUT = "${pwd}/HEC-FDA-${{ env.VERSION }}.exe"
echo "7Z_OUT=$7Z_OUT" >> $env:GITHUB_ENV
7z a -sfx $7Z_OUT "${{ env.PUBLISH_OUT }}/*"
$SEVEN_Z_OUT = "${pwd}/HEC-FDA-${{ env.VERSION }}.exe"
echo "SEVEN_Z_OUT=$7Z_OUT" >> $env:GITHUB_ENV
7z a -sfx $SEVEN_Z_OUT "${{ env.PUBLISH_OUT }}/*"
- name: Release
uses: softprops/action-gh-release@v2
with:
files: ${{ env.7Z_OUT }}
files: ${{ env.SEVEN_Z_OUT }}

0 comments on commit 46df63a

Please sign in to comment.