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 2525 - name : Capture branch and tag
2626 id : branch_name
2727 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
3130 - name : install dependencies
3231 run : make dev-docs
3332 - name : Build docs website
Original file line number Diff line number Diff line change 1818 - name : Capture branch and tag
1919 id : branch_name
2020 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
2423 - name : install dependencies
2524 run : make dev-docs
2625 - name : Build docs website
You can’t perform that action at this time.
0 commit comments