mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-12 17:31:47 +00:00
don't run if "${{ secrets.NGROK_TOKEN }}" is not set.
This commit is contained in:
parent
918c8f9295
commit
b639683ac1
3
.github/workflows/LetsEncrypt.yml
vendored
3
.github/workflows/LetsEncrypt.yml
vendored
@ -15,6 +15,7 @@ on:
|
||||
jobs:
|
||||
Ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
if: "${{ secrets.NGROK_TOKEN }}"
|
||||
env:
|
||||
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
|
||||
TEST_LOCAL: 1
|
||||
@ -29,6 +30,7 @@ jobs:
|
||||
|
||||
MacOS:
|
||||
runs-on: macos-latest
|
||||
if: "${{ secrets.NGROK_TOKEN }}"
|
||||
needs: Ubuntu
|
||||
env:
|
||||
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
|
||||
@ -44,6 +46,7 @@ jobs:
|
||||
|
||||
Windows:
|
||||
runs-on: windows-latest
|
||||
if: "${{ secrets.NGROK_TOKEN }}"
|
||||
needs: MacOS
|
||||
env:
|
||||
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
|
||||
|
Loading…
Reference in New Issue
Block a user