From ee1e8c079e277ee925833a00e53fffc90c7d0cf5 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Fri, 27 Mar 2026 17:00:17 +0100 Subject: [PATCH] fix: try fix empty outputs [skip ci] --- .github/workflows/tf-acc-test.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/tf-acc-test.yaml b/.github/workflows/tf-acc-test.yaml index 7e1f4911..7ce38338 100644 --- a/.github/workflows/tf-acc-test.yaml +++ b/.github/workflows/tf-acc-test.yaml @@ -41,10 +41,13 @@ jobs: - name: set start time id: start_time + continue-on-error: true run: | time=$(date --rfc-3339=ns) + echo "start_time=$time" echo "start_time=$time" >> ${GITHUB_ENV} start=$(date +%s%N) + echo "start=$start" echo "start=$start" >> ${GITHUB_ENV} - name: debug @@ -67,6 +70,7 @@ jobs: - name: Run Test (workflow dispatch) if: ${{ forgejo.event_name == 'workflow_dispatch' }} id: manual_run + continue-on-error: true uses: ./.github/actions/acc_test with: go-version: ${{ env.GO_VERSION }} @@ -85,6 +89,7 @@ jobs: - name: Run Test (automatic) if: ${{ forgejo.event_name != 'workflow_dispatch' }} id: automatic_run + continue-on-error: true uses: ./.github/actions/acc_test with: go-version: ${{ env.GO_VERSION }} @@ -99,6 +104,7 @@ jobs: - name: set end time id: end_time + continue-on-error: true run: | set -e echo "end_time=$(date --rfc-3339=ns)" >> ${GITHUB_ENV}