We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e7b9f5 commit ada6039Copy full SHA for ada6039
.github/workflows/main.yml
@@ -16,6 +16,7 @@ jobs:
16
runs-on: ubuntu-latest
17
environment: ${{ github.event.inputs.env }}
18
steps:
19
+ - run: echo APP_NAME is ${{secrets.APP_NAME}}
20
- uses: actions/checkout@v2
21
- uses: akhileshns/heroku-deploy@v3.6.8 # This is the action
22
with:
@@ -30,8 +31,6 @@ jobs:
30
31
HD_UUID: ${{ secrets.HEROKU_V2RAY_UUID }} # UUID for v2ray user, 为了安全,一定要放入github action token中
32
NODE_ENV: production
33
SECRET_KEY: ${{ secrets.MY_SECRET_KEY }}
- - run: |
34
- echo APP_NAME is ${{secrets.APP_NAME}}
35
stop-start:
36
if: ${{ github.event.inputs.actions == 'start' || github.event.inputs.actions == 'stop' }}
37
0 commit comments