Skip to content

Commit

Permalink
모르겠다
Browse files Browse the repository at this point in the history
  • Loading branch information
jaerius committed Jun 7, 2024
1 parent d39b1d9 commit 93ddd9e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ jobs:
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: |
echo "$HEROKU_API_KEY" | heroku auth:token
heroku auth:whoami
echo "machine api.heroku.com" >> ~/.netrc
echo " login $HEROKU_API_KEY" >> ~/.netrc
echo "machine git.heroku.com" >> ~/.netrc
echo " login $HEROKU_API_KEY" >> ~/.netrc
- name: Add Heroku remote
run: git remote add heroku https://git.heroku.com/calm-eyrie-10609.git
Expand All @@ -41,4 +43,7 @@ jobs:
git config --global user.name "jaewon"
- name: Push to Heroku
run: git push heroku `git subtree split --prefix my-replicate-app main`:refs/heads/main --force
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: |
git push heroku `git subtree split --prefix my-replicate-app main`:refs/heads/main --force

0 comments on commit 93ddd9e

Please sign in to comment.