File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 25
25
- name : Capture branch and tag
26
26
id : branch_name
27
27
run : |
28
- echo ::set-env name=SOURCE_BRANCH::${GITHUB_REF#refs/heads/}
29
- echo ::set-env name=SOURCE_TAG::${GITHUB_REF#refs/tags/}
30
-
28
+ echo "SOURCE_BRANCH=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
29
+ echo "SOURCE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
31
30
- name : install dependencies
32
31
run : make dev-docs
33
32
- name : Build docs website
Original file line number Diff line number Diff line change 18
18
- name : Capture branch and tag
19
19
id : branch_name
20
20
run : |
21
- echo ::set-env name=SOURCE_BRANCH::${GITHUB_REF#refs/heads/}
22
- echo ::set-env name=SOURCE_TAG::${GITHUB_REF#refs/tags/}
23
-
21
+ echo "SOURCE_BRANCH=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
22
+ echo "SOURCE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
24
23
- name : install dependencies
25
24
run : make dev-docs
26
25
- name : Build docs website
You can’t perform that action at this time.
0 commit comments