diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a1470c5..c76d625 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -8,9 +8,19 @@ jobs: runs-on: ubuntu-latest steps: - run: env - - run: cat /var/run/act/workflow/event.json - - run: echo ${{ github }} - - run: echo ${{ job }} + - name: Dump GitHub context + id: github_context_step + run: echo '${{ toJSON(github) }}' + - name: Dump job context + run: echo '${{ toJSON(job) }}' + - name: Dump steps context + run: echo '${{ toJSON(steps) }}' + - name: Dump runner context + run: echo '${{ toJSON(runner) }}' + - name: Dump strategy context + run: echo '${{ toJSON(strategy) }}' + - name: Dump matrix context + run: echo '${{ toJSON(matrix) }}' # - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." # - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" # - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."