Skip to content

Commit

Permalink
adjusting dir name
Browse files Browse the repository at this point in the history
  • Loading branch information
vgmello committed Nov 4, 2023
1 parent 2b721e4 commit d83cf2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build & Publish
run: dotnet publish -c Release -r win-x64 -o output
run: dotnet publish -c Release -r win-x64 -o win-output
- name: Zip Output
uses: thedoctor0/[email protected]
with:
type: "zip"
directory: output/
directory: win-output/
path: aws-cred-mgr.exe
filename: "aws-cred-mgr-win-x64.zip"
- name: Create Release
uses: softprops/action-gh-release@v1
with:
prerelease: contains(github.ref, 'beta') || contains(github.ref, 'alpha')
files: aws-cred-mgr-win-x64.zip
files: win-output/aws-cred-mgr-win-x64.zip

0 comments on commit d83cf2a

Please sign in to comment.