Update .gitea/workflows/tf-apply.yml

This commit is contained in:
2023-12-14 10:32:32 +02:00
committed by Gitea Bot
parent 827e04c7ac
commit 11afa216fb

View File

@@ -29,8 +29,8 @@ jobs:
shell: bash shell: bash
id: check id: check
run: | run: |
echo "code=$(cat exitcode)" >> $GITHUB_OUTPUT echo "code=$(cat ${{steps.download.outputs.download-path}}/artifacts/exitcode)" >> $GITHUB_OUTPUT
if [ "$(cat exitcode)" -lt 2 ]; then if [ "$(cat ${{steps.download.outputs.download-path}}/artifacts/exitcode)" -lt 2 ]; then
exit "$(cat exitcode)"; exit "$(cat exitcode)";
fi fi
- name: Clone blackbox repo - name: Clone blackbox repo