mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
GH actions don't like "\n"
This commit is contained in:
parent
0987745b69
commit
0d45e568f6
1 changed files with 1 additions and 1 deletions
2
.github/workflows/deploy-fleet-website.yml
vendored
2
.github/workflows/deploy-fleet-website.yml
vendored
|
|
@ -59,7 +59,7 @@ jobs:
|
|||
env:
|
||||
HEROKU_EMAIL_FOR_BOT_USER: ${{ secrets.HEROKU_EMAIL_FOR_BOT_USER }}
|
||||
HEROKU_API_TOKEN_FOR_BOT_USER: ${{ secrets.HEROKU_API_TOKEN_FOR_BOT_USER }}
|
||||
run: node -e "console.log('machine git.heroku.com\n login $HEROKU_EMAIL_FOR_BOT_USER\n password $HEROKU_API_TOKEN_FOR_BOT_USER\n');" > ~/.netrc
|
||||
run: node -e "console.log('machine git.heroku.com'+String.fromCharCode(10)+' login $HEROKU_EMAIL_FOR_BOT_USER'+String.fromCharCode(10)+' password $HEROKU_API_TOKEN_FOR_BOT_USER'+String.fromCharCode(10));" > ~/.netrc
|
||||
run: echo "Successfully wrote to ~./netrc" && cat ~/.netrc
|
||||
|
||||
# Deploy to Heroku (by pushing)
|
||||
|
|
|
|||
Loading…
Reference in a new issue