diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 2ebd8f0..4f390b7 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -40,11 +40,6 @@ jobs: needs: [test] steps: - name: 輸出狀態 - env: - CODEX_STATUS: ${{ needs.test.outputs.status }} - run: printf 'status: %s\n' "$CODEX_STATUS" + run: echo "${{ needs.test.outputs.status }}" - name: 輸出內容 - env: - CODEX_OUTPUT: ${{ needs.test.outputs.output }} - run: | - printf 'output:\n%s\n' "$CODEX_OUTPUT" + run: echo "${{ needs.test.outputs.output }}"