Skip to content

Commit 378dd90

Browse files
bors[bot]matklad
andauthored
Merge #6290
6290: Fix deprecation warning r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
2 parents fc2383e + 53a7651 commit 378dd90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,16 @@ jobs:
7979
with:
8080
node-version: 12.x
8181

82-
- run: echo "::set-env name=TAG::$(date --iso --utc)"
82+
- run: echo "TAG=$(date --iso --utc)" >> $GITHUB_ENV
8383
if: github.ref == 'refs/heads/release'
84-
- run: echo "::set-env name=TAG::nightly"
84+
- run: echo "TAG=nightly" >> $GITHUB_ENV
8585
if: github.ref != 'refs/heads/release'
8686
- run: 'echo "TAG: $TAG"'
8787

8888
- name: Checkout repository
8989
uses: actions/checkout@v2
9090

91-
- run: echo "::set-env name=HEAD_SHA::$(git rev-parse HEAD)"
91+
- run: echo "HEAD_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV
9292
- run: 'echo "HEAD_SHA: $HEAD_SHA"'
9393

9494
- uses: actions/download-artifact@v1

0 commit comments

Comments
 (0)