2
0
mirror of https://github.com/acmesh-official/acme.sh synced 2025-08-30 22:05:34 +00:00

check token before run

This commit is contained in:
neil
2020-08-29 23:14:18 +08:00
parent 70366a98bd
commit faaa7bfa3a

View File

@@ -13,9 +13,23 @@ on:
jobs: jobs:
CheckToken:
runs-on: ubuntu-latest
outputs:
hasToken: ${{ steps.step_one.outputs.hasToken }}
env:
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
steps:
- name: Set the value
id: step_one
run: [ "$NGROK_TOKEN" ] && echo "::set-output name=hasToken::true" || echo "::set-output name=hasToken::false"
- name: Check the value
run: echo ${{ steps.step_one.outputs.hasToken }}
Ubuntu: Ubuntu:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: "contains(secrets.NGROK_TOKEN, '-')" needs: CheckToken
if: "contains(needs.CheckToken.outputs.hasToken, 'true')"
env: env:
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }} NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
TEST_LOCAL: 1 TEST_LOCAL: 1
@@ -30,7 +44,6 @@ jobs:
MacOS: MacOS:
runs-on: macos-latest runs-on: macos-latest
if: "contains(secrets.NGROK_TOKEN, '-')"
needs: Ubuntu needs: Ubuntu
env: env:
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }} NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
@@ -46,7 +59,6 @@ jobs:
Windows: Windows:
runs-on: windows-latest runs-on: windows-latest
if: "contains(secrets.NGROK_TOKEN, '-')"
needs: MacOS needs: MacOS
env: env:
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }} NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}