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 93ddd9e commit fcd55d1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,15 @@ jobs:

- name: Authenticate with Heroku
env:
HEROKU_EMAIL: ${{ secrets.HEROKU_EMAIL }}
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: |
echo "machine api.heroku.com" >> ~/.netrc
echo " login $HEROKU_API_KEY" >> ~/.netrc
echo "machine api.heroku.com" > ~/.netrc
echo " login $HEROKU_EMAIL" >> ~/.netrc
echo " password $HEROKU_API_KEY" >> ~/.netrc
echo "machine git.heroku.com" >> ~/.netrc
echo " login $HEROKU_API_KEY" >> ~/.netrc
echo " login $HEROKU_EMAIL" >> ~/.netrc
echo " password $HEROKU_API_KEY" >> ~/.netrc
- name: Add Heroku remote
run: git remote add heroku https://git.heroku.com/calm-eyrie-10609.git
Expand All @@ -43,7 +46,4 @@ jobs:
git config --global user.name "jaewon"
- name: Push to Heroku
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: |
git push heroku `git subtree split --prefix my-replicate-app main`:refs/heads/main --force
run: git push heroku `git subtree split --prefix my-replicate-app main`:refs/heads/main --force

0 comments on commit fcd55d1

Please sign in to comment.