Skip to content

Commit

Permalink
build: Correct quoting on filename
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser committed Feb 5, 2021
1 parent f3593fc commit df0589e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
id: filename
run: |
[[ "${{ github.ref }}" == "refs/heads/master" ]] && \
echo "::set-output name=artifactName::${name}-dev-$(git rev-parse --short HEAD)-${os}.${ext}" || \
echo "::set-output name=artifactName::${name}-${version}-${os}.${ext}"
echo '::set-output name=artifactName::${name}-dev-'$(git rev-parse --short HEAD)'-${os}.${ext}' || \
echo '::set-output name=artifactName::${name}-${version}-${os}.${ext}'
# Build
- run: yarn electron-builder install-app-deps
Expand Down

1 comment on commit df0589e

@vercel
Copy link

@vercel vercel bot commented on df0589e Feb 5, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.