mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
fix checktoken
This commit is contained in:
parent
faaa7bfa3a
commit
900eedfc2e
7
.github/workflows/LetsEncrypt.yml
vendored
7
.github/workflows/LetsEncrypt.yml
vendored
@ -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 }}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user