Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Commit 7140957

Browse files
authored
Add action for production deployment (#237)
1 parent 21f8d40 commit 7140957

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/deploy-master.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Deploy Master
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: akhileshns/heroku-deploy@v3.12.12
14+
with:
15+
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
16+
heroku_app_name: 'cml-dev'
17+
heroku_email: 'juliannagal18@gmail.com'
18+
dontautocreate: true

0 commit comments

Comments
 (0)