fix: try fix empty outputs

[skip ci]
This commit is contained in:
Marcel S. Henselin 2026-03-27 17:00:17 +01:00
parent 992e678c3c
commit ee1e8c079e

View file

@ -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}