fix deprecated usage of set-output (#4699)

This commit is contained in:
ebbit1q 2022-10-31 23:26:26 +01:00 committed by GitHub
parent 3d4858b840
commit 5854a635ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 23 additions and 19 deletions

View file

@ -50,7 +50,7 @@ jobs:
run: |
set +e # do not fail, just save the exit state
git diff --exit-code
echo "::set-output name=deploy::$?"
echo "deploy=$?" >>"$GITHUB_OUTPUT"
- name: Commit changes
if: steps.check.outputs.deploy == '1'