Skip to content

Commit

Permalink
Fix Heroku deployment with Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
parkr committed Dec 14, 2024
1 parent ee6eef1 commit 04bb9fe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/heroku.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name: "Deploy"

on:
push:
branches:
- main
- deploy-with-actions

concurrency: "heroku"

name: Deploy
concurrency: heroku
jobs:
custom-deploy:
name: "Deploy to Heroku"
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch full clone
- name: Install heroku CLI
run: |
curl https://cli-assets.heroku.com/install-ubuntu.sh | sh
- name: Heroku login credentials
run: |
cat > ~/.netrc <<EOF
Expand Down

0 comments on commit 04bb9fe

Please sign in to comment.