fix checks

This commit is contained in:
neil 2020-09-11 23:26:33 +08:00
parent 506b1b4fda
commit cceafe50bf

View File

@ -25,7 +25,7 @@ jobs:
- name: Set the value
id: step_one
run: |
if [ "$${{ secrets.TokenName1 }}" != "_" ] ; then
if [ "$_${{ secrets.TokenName1}}" != "_" ] ; then
echo "::set-output name=hasToken::true"
else
echo "::set-output name=hasToken::false"
@ -36,9 +36,9 @@ jobs:
Fail:
runs-on: ubuntu-latest
needs: CheckToken
if: "${{needs.CheckToken.outputs.hasToken}} == 'false'"
if: "contains(needs.CheckToken.outputs.hasToken, 'false')"
steps:
- name: "Read this: https://github.com/acmesh-official/acme.sh/wiki/DNS-API-Test"
- name: "Read this: https://github.com/acmesh-official/acme.sh/wiki/DNS-API-Test"
run: |
echo "Plese see this page to fix the error: https://github.com/acmesh-official/acme.sh/wiki/DNS-API-Test"
- name: Fail