Skip to content

Commit

Permalink
Update Release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Brennan1994 authored Sep 10, 2024
1 parent 9beca83 commit 4415d45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
- name: Publish
shell: pwsh
run: |
$PUBLISH_OUT = $pwd/TO-PACKAGE/
$PUBLISH_OUT = "${pwd}/TO-PACKAGE/"
echo $PUBLISH_OUT >> $GITHUB_ENV
dotnet publish -c Release -v quiet /p:Version=${{ env.VERSION }} -o $PUBLISH_OUT ${{ env.PROJECT_NAME }}
- name: Zip Release Package
shell: pwsh
run: |
$ZIP_OUT = $pwd/PACKAGED/HEC-FDA-${{ env.VERSION }}.zip
$ZIP_OUT = "${pwd}/PACKAGED/HEC-FDA-${{ env.VERSION }}.zip"
echo $ZIP_OUT >> $GITHUB_ENV
Compress-Archive -Path ${{ env.PUBLISH_OUT }} -DestinationPath $ZIP_OUT
Expand Down

0 comments on commit 4415d45

Please sign in to comment.