Skip to content

Commit

Permalink
Fix an issue releasing from caveat with GH actions expressions
Browse files Browse the repository at this point in the history
"It is important to note that the first value after the && must be truthy. Otherwise, the value after the || will always be returned."
https://docs.github.com/en/actions/learn-github-actions/expressions
  • Loading branch information
gunt3001 committed May 11, 2024
1 parent c4118c8 commit ae2a8c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Archive build artifacts
uses: actions/upload-artifact@v4
with:
name: HsrGraphicsTool-${{ matrix.architecture }}${{ matrix.self-contained == 'true' && '' || '-fd' }}
name: HsrGraphicsTool-${{ matrix.architecture }}${{ matrix.self-contained == 'false' && '-fd' || '' }}
path: |
HsrGraphicsTool/bin/windows/Release/net8.0-windows/win-${{ matrix.architecture }}/publish/*
Expand Down

0 comments on commit ae2a8c5

Please sign in to comment.