Browse Source

fix if

pull/3133/head
neil 4 years ago
parent
commit
e88180b4d5
  1. 6
      .github/workflows/LetsEncrypt.yml

6
.github/workflows/LetsEncrypt.yml

@ -15,7 +15,7 @@ on:
jobs:
Ubuntu:
runs-on: ubuntu-latest
if: "${{ secrets.NGROK_TOKEN }}"
if: "${{ contains(secrets.NGROK_TOKEN, 0) }}"
env:
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
TEST_LOCAL: 1
@ -30,7 +30,7 @@ jobs:
MacOS:
runs-on: macos-latest
if: "${{ secrets.NGROK_TOKEN }}"
if: "${{ contains(secrets.NGROK_TOKEN, 0) }}"
needs: Ubuntu
env:
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
@ -46,7 +46,7 @@ jobs:
Windows:
runs-on: windows-latest
if: "${{ secrets.NGROK_TOKEN }}"
if: "${{ contains(secrets.NGROK_TOKEN, 0) }}"
needs: MacOS
env:
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}

Loading…
Cancel
Save