We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 110bca9 commit 14a7be5Copy full SHA for 14a7be5
.github/workflows/master.yml
@@ -5,8 +5,23 @@ jobs:
5
name: build
6
runs-on: ubuntu-latest
7
steps:
8
- - name: checkout repo
9
- uses: actions/checkout@master
+ - name: Dump GitHub context
+ env:
10
+ GITHUB_CONTEXT: ${{ toJson(github) }}
11
+ run: echo "$GITHUB_CONTEXT"
12
+ - name: Dump job context
13
14
+ JOB_CONTEXT: ${{ toJson(job) }}
15
+ run: echo "$JOB_CONTEXT"
16
+ - name: Dump runner context
17
18
+ RUNNER_CONTEXT: ${{ toJson(runner) }}
19
+ run: echo "$RUNNER_CONTEXT"
20
+ - name: Dump steps context
21
22
+ STEPS_CONTEXT: ${{ toJson(steps) }}
23
+ run: echo "$STEPS_CONTEXT"
24
+ - uses: actions/checkout@master
25
- name: build + push
26
run: |
27
version=$(date "+%Y-%m-%d")-$(git --no-pager log -1 --pretty=%h)
0 commit comments