Skip to content

Commit a28df93

Browse files
committed
Add github action to deploy to heroku vite
1 parent 735a4d2 commit a28df93

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Deploy vite branch to foodoasisvite.herokuapp.com
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: akhileshns/[email protected] # This is the action
14+
with:
15+
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
16+
heroku_app_name: "foodoasisvite" #Must be unique in Heroku
17+
heroku_email: "[email protected]"
18+
usedocker: true

0 commit comments

Comments
 (0)