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 f5e903d commit 6b17800
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,19 @@ jobs:
- name: Install Heroku CLI
run: curl https://cli-assets.heroku.com/install.sh | sh

- name: Set up Heroku API Key
run: echo ${HEROKU_API_KEY} | heroku auth:token
- name: Authenticate with Heroku
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: |
echo "$HEROKU_API_KEY" | heroku auth:token
- name: Add Heroku remote
run: git remote add heroku https://git.heroku.com/calm-eyrie-10609.git

- name: Deploy to Heroku
- name: Set up Git for pushing to Heroku
run: |
git config --global user.email "[email protected]"
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 }}

0 comments on commit 6b17800

Please sign in to comment.