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
900eedfc
Commit
900eedfc
authored
Aug 29, 2020
by
neil
Browse files
fix checktoken
parent
faaa7bfa
Changes
1
Show whitespace changes
Inline
Side-by-side
.github/workflows/LetsEncrypt.yml
View file @
900eedfc
...
...
@@ -22,7 +22,12 @@ jobs:
steps
:
-
name
:
Set the value
id
:
step_one
run
:
[
"
$NGROK_TOKEN"
]
&&
echo "::set-output name=hasToken::true" || echo "::set-output name=hasToken::false"
run
:
|
if [ "$NGROK_TOKEN" ] ; then
echo "::set-output name=hasToken::true"
else
echo "::set-output name=hasToken::false"
fi
-
name
:
Check the value
run
:
echo ${{ steps.step_one.outputs.hasToken }}
...
...
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