pipeline-test-vars/.gitea/workflows/vars.yml

47 lines
888 B
YAML
Raw Normal View History

2024-01-21 14:13:36 +01:00
on:
push:
jobs:
dump:
runs-on: ubuntu-latest
steps:
2024-01-22 06:27:22 +01:00
- name: github
shell: bash
run: echo "${{ toJSON(github) }}"
- name: env
shell: bash
run: echo "${{ toJSON(env) }}"
2024-01-22 06:27:48 +01:00
- name: vars
shell: bash
run: echo "${{ toJSON(vars) }}"
2024-01-22 06:28:02 +01:00
- name: job
shell: bash
run: echo "${{ toJSON(job) }}"
2024-01-22 06:28:13 +01:00
- name: jobs
shell: bash
run: echo "${{ toJSON(jobs) }}"
2024-01-22 06:28:53 +01:00
- name: steps
shell: bash
run: echo "${{ toJSON(steps) }}"
2024-01-22 06:29:04 +01:00
- name: runner
shell: bash
run: echo "${{ toJSON(runner) }}"
2024-01-22 06:29:19 +01:00
- name: secrets
shell: bash
run: echo "${{ toJSON(secrets) }}"
2024-01-22 06:29:33 +01:00
- name: strategy
shell: bash
run: echo "${{ toJSON(strategy) }}"
2024-01-22 06:29:46 +01:00
- name: matrix
shell: bash
run: echo "${{ toJSON(matrix) }}"