Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
e88180b4
Commit
e88180b4
authored
Aug 29, 2020
by
neil
Browse files
fix if
parent
b639683a
Changes
1
Hide whitespace changes
Inline
Side-by-side
.github/workflows/LetsEncrypt.yml
View file @
e88180b4
...
...
@@ -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 }}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment