更新 '.gitea/workflows/build.yaml'
Explore-Actions Details

This commit is contained in:
李寻欢 2023-04-04 15:49:37 +08:00
parent 4cbd6ac16b
commit 1de01b5e0c
1 changed files with 13 additions and 3 deletions

View File

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