Skip to content

Commit

Permalink
dev: Move HEROKU_USER to a variable instead of a secret
Browse files Browse the repository at this point in the history
No need to be a secret, and makes it clearer what token we're working
with.  I've adjusted the "nextstrain-canary" and "nextstrain-dev"
environments to account for this.
  • Loading branch information
tsibley committed May 10, 2024
1 parent a53b529 commit 2ab1460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
- name: Login to Heroku
run: echo "machine api.heroku.com login $HEROKU_USER password $HEROKU_TOKEN" >> ~/.netrc
env:
HEROKU_USER: "${{ secrets.HEROKU_USER }}"
HEROKU_USER: "${{ vars.HEROKU_USER }}"
HEROKU_TOKEN: "${{ secrets.HEROKU_TOKEN }}"

- name: Upload slug
Expand Down

0 comments on commit 2ab1460

Please sign in to comment.