mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
fix if
This commit is contained in:
parent
e88180b4d5
commit
70366a98bd
6
.github/workflows/LetsEncrypt.yml
vendored
6
.github/workflows/LetsEncrypt.yml
vendored
@ -15,7 +15,7 @@ on:
|
||||
jobs:
|
||||
Ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
if: "${{ contains(secrets.NGROK_TOKEN, 0) }}"
|
||||
if: "contains(secrets.NGROK_TOKEN, '-')"
|
||||
env:
|
||||
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
|
||||
TEST_LOCAL: 1
|
||||
@ -30,7 +30,7 @@ jobs:
|
||||
|
||||
MacOS:
|
||||
runs-on: macos-latest
|
||||
if: "${{ contains(secrets.NGROK_TOKEN, 0) }}"
|
||||
if: "contains(secrets.NGROK_TOKEN, '-')"
|
||||
needs: Ubuntu
|
||||
env:
|
||||
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
|
||||
@ -46,7 +46,7 @@ jobs:
|
||||
|
||||
Windows:
|
||||
runs-on: windows-latest
|
||||
if: "${{ contains(secrets.NGROK_TOKEN, 0) }}"
|
||||
if: "contains(secrets.NGROK_TOKEN, '-')"
|
||||
needs: MacOS
|
||||
env:
|
||||
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
|
||||
|
Loading…
Reference in New Issue
Block a user