Skip to content

Commit 08de950

Browse files
committed
style: remove comments from deployment.yml
1 parent 7cd0127 commit 08de950

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/deployment.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
name: deploy-hackernews-app-heroku # 1
1+
2+
name: deploy-hackernews-app-heroku
23

34
on:
45
push:
5-
branches: # 2
6+
branches:
67
- master
78
- main
89

910
jobs:
1011
deploy:
1112
runs-on: ubuntu-latest
1213
steps:
13-
- uses: actions/checkout@v2 # 3
14-
- run: npm ci # 4
14+
- uses: actions/checkout@v2
15+
- run: npm ci
1516
- name: Run production migration
16-
run: npm run migrate:deploy # 5
17+
run: npm run migrate:deploy
1718
env:
1819
DATABASE_URL: ${{ secrets.DATABASE_URL }}
19-
- uses: akhileshns/[email protected] # 6
20+
- uses: akhileshns/[email protected]
2021
with:
2122
heroku_api_key: ${{ secrets.HEROKU_API_KEY }}
2223
heroku_app_name: ${{ secrets.HEROKU_APP_NAME }}
2324
heroku_email: ${{ secrets.HEROKU_EMAIL }}
24-
25+

0 commit comments

Comments
 (0)