Skip to content

Commit

Permalink
Fix quoting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixS90 committed Nov 10, 2023
1 parent 192c3dd commit 0cf170a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/czishrink_dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
if: ${{ always() }}

- name: Publish
if: ${{ (github.event_name == 'push') && (matrix.build == Release) }}
if: ${{ (github.event_name == 'push') && (matrix.build == 'Release') }}
run: >
dotnet publish netczicompress.Desktop/netczicompress.Desktop.csproj
-c ${{ matrix.build }}
Expand All @@ -120,7 +120,7 @@ jobs:
- name: Upload published binaries
uses: actions/upload-artifact@v3
if: ${{ (github.event_name == 'push') && (matrix.build == Release) }}
if: ${{ (github.event_name == 'push') && (matrix.build == 'Release') }}
with:
name: CziShrink_${{ steps.getversion.outputs.version }}_${{ matrix.config.osfamily}}-x64
path: publish

0 comments on commit 0cf170a

Please sign in to comment.