Skip to content

Commit 7c0b7f8

Browse files
authored
Merge pull request #87 from jekyll/deploy-with-actions
Fix Heroku deployment with Actions
2 parents ee6eef1 + 04bb9fe commit 7c0b7f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/heroku.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
name: "Deploy"
2-
31
on:
42
push:
53
branches:
64
- main
75
- deploy-with-actions
8-
9-
concurrency: "heroku"
10-
6+
name: Deploy
7+
concurrency: heroku
118
jobs:
129
custom-deploy:
1310
name: "Deploy to Heroku"
1411
runs-on: ubuntu-latest
1512
steps:
1613
- name: Check out repository
17-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1815
with:
1916
fetch-depth: 0 # fetch full clone
17+
- name: Install heroku CLI
18+
run: |
19+
curl https://cli-assets.heroku.com/install-ubuntu.sh | sh
2020
- name: Heroku login credentials
2121
run: |
2222
cat > ~/.netrc <<EOF

0 commit comments

Comments
 (0)