Skip to content

Commit 9be33c4

Browse files
committed
chore: test
1 parent e8ac518 commit 9be33c4

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/main.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
if: ${{ github.event.inputs.actions == 'deploy' }}
1515
runs-on: ubuntu-latest
1616
steps:
17-
- run: |
18-
echo "testinput: ${{ github.event.inputs.testinput }}"
1917
- uses: actions/checkout@v2
2018
- uses: akhileshns/heroku-deploy@v3.6.8 # This is the action
2119
with:
@@ -42,4 +40,8 @@ jobs:
4240
heroku_app_name: ${{secrets.APP_NAME}} #Must be unique in Heroku
4341
heroku_email: ${{secrets.EMAIL}}
4442
justlogin: true
45-
- run: heroku auth:whoami
43+
- run: |
44+
echo ${{ github.event.inputs.actions }}
45+
if [[ ${{ github.event.inputs.actions }} == 'stop' ]]; then echo "stop" && echo "dd"; fi
46+
if [[ ${{ github.event.inputs.actions }} == 'start' ]]; then echo "start" && echo "dd"; fi
47+
heroku auth:whoami

0 commit comments

Comments
 (0)