fix warning

This commit is contained in:
neilpang 2023-01-28 16:24:27 +08:00
parent aa9cbf7c55
commit 01249d0cb9
1 changed files with 2 additions and 2 deletions

View File

@ -28,9 +28,9 @@ jobs:
id: step_one
run: |
if [ "$DOCKER_PASSWORD" ] ; then
echo "::set-output name=hasToken::true"
echo "hasToken=true" >>$GITHUB_OUTPUT
else
echo "::set-output name=hasToken::false"
echo "hasToken=false" >>$GITHUB_OUTPUT
fi
- name: Check the value
run: echo ${{ steps.step_one.outputs.hasToken }}