mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-22 22:12:28 -05:00
Fix before_deploy script to properly quote (#1261)
This commit is contained in:
parent
c268bbae47
commit
ea3a23e37c
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ jobs:
|
|||
env: NPM_SCRIPT=build
|
||||
before_deploy:
|
||||
- npm --no-git-tag-version version $($(npm bin)/json -f package.json version)-prerelease.$(date +%s)
|
||||
- git config --global user.email $(git log --pretty=format:"%ae" -n1)
|
||||
- git config --global user.name $(git log --pretty=format:"%an" -n1)
|
||||
- git config --global user.email "$(git log --pretty=format:"%ae" -n1)"
|
||||
- git config --global user.name "$(git log --pretty=format:"%an" -n1)"
|
||||
deploy:
|
||||
- provider: npm
|
||||
on:
|
||||
|
|
Loading…
Reference in a new issue