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 11e0977 commit 10ec206
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,15 @@ jobs:
working-directory: ./my-replicate-app
run: npm install

- name: Install Heroku CLI
run: curl https://cli-assets.heroku.com/install.sh | sh

- name: Log in to Heroku
run: echo "$HEROKU_API_KEY" | heroku auth:token

- name: Deploy to Heroku
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: |
git remote add heroku https://git.heroku.com/calm-eyrie-10609.git
git subtree push --prefix my-replicate-app heroku main
git push heroku `git subtree split --prefix my-replicate-app main`:refs/heads/main --force

0 comments on commit 10ec206

Please sign in to comment.