Skip to content

Commit

Permalink
Fix lower-case variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mretegan committed Sep 20, 2024
1 parent a22d215 commit 86fb513
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ jobs:
uses: actions/upload-artifact@v4
if: runner.os == 'Windows'
with:
name: Crispy-${{ steps.crispy_version.outputs.VERSION }}-${{ runner.arch | lower }}
name: Crispy-${{ steps.crispy_version.outputs.VERSION }}-${{ toLower(runner.arch) }}
path: package\artifacts\*.exe

- name: Upload the macOS app
uses: actions/upload-artifact@v4
if: runner.os == 'macOS'
with:
name: Crispy-${{ steps.crispy_version.outputs.VERSION }}-${{ runner.arch | lower }}
name: Crispy-${{ steps.crispy_version.outputs.VERSION }}-${{ toLower(runner.arch) }}
path: package/artifacts/*.dmg

0 comments on commit 86fb513

Please sign in to comment.