File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 26
26
27
27
- name : Set variables
28
28
run : |
29
- echo "::set-env name= REPOSITORY:: $(echo ${{ github.repository }} | cut -d/ -f2)"
30
- echo "::set-env name= OWNER:: ${{ github.repository_owner }}"
29
+ echo "REPOSITORY= $(echo ${{ github.repository }} | cut -d/ -f2)" >> $GITHUB_ENV
30
+ echo "OWNER= ${{ github.repository_owner }}" >> $GITHUB_ENV
31
31
32
32
# Get Pull Requests
33
33
- name : Get Pull Requests
Original file line number Diff line number Diff line change 57
57
- name : Extract tarball
58
58
run : |
59
59
tar xzf tarballs/*.tar.gz
60
- echo "::set-env name= TAR_DIR:: `basename tarballs/*.tar.gz .tar.gz`"
60
+ echo "TAR_DIR= `basename tarballs/*.tar.gz .tar.gz`" >> $GITHUB_ENV
61
61
- name : Copy directories needed for testing
62
62
run : |
63
63
cp -r tools/node_modules $TAR_DIR/tools
Original file line number Diff line number Diff line change 40
40
41
41
- name : Set variables
42
42
run : |
43
- echo "::set-env name= REPOSITORY:: $(echo ${{ github.repository }} | cut -d/ -f2)"
44
- echo "::set-env name= OWNER:: ${{ github.repository_owner }}"
43
+ echo "REPOSITORY= $(echo ${{ github.repository }} | cut -d/ -f2)" >> $GITHUB_ENV
44
+ echo "OWNER= ${{ github.repository_owner }}" >> $GITHUB_ENV
45
45
46
46
- name : Get Pull Requests
47
47
uses : octokit/graphql-action@v2.x
You can’t perform that action at this time.
0 commit comments