diff --git a/.gitea/workflows/vars.yml b/.gitea/workflows/vars.yml index 12235e4..a294016 100644 --- a/.gitea/workflows/vars.yml +++ b/.gitea/workflows/vars.yml @@ -24,3 +24,31 @@ jobs: - name: jobs shell: bash run: echo "${{ toJSON(jobs) }}" + + - name: steps + shell: bash + run: echo "${{ toJSON(steps) }}" + + - name: runner + shell: bash + run: echo "${{ toJSON(runner) }}" + + - name: secrets + shell: bash + run: echo "${{ toJSON(secrets) }}" + + - name: strategy + shell: bash + run: echo "${{ toJSON(strategy) }}" + + - name: matrix + shell: bash + run: echo "${{ toJSON(matrix) }}" + + - name: needs + shell: bash + run: echo "${{ toJSON(needs) }}" + + - name: inputs + shell: bash + run: echo "${{ toJSON(inputs) }}"