We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fc2383e + 53a7651 commit 378dd90Copy full SHA for 378dd90
.github/workflows/release.yaml
@@ -79,16 +79,16 @@ jobs:
79
with:
80
node-version: 12.x
81
82
- - run: echo "::set-env name=TAG::$(date --iso --utc)"
+ - run: echo "TAG=$(date --iso --utc)" >> $GITHUB_ENV
83
if: github.ref == 'refs/heads/release'
84
- - run: echo "::set-env name=TAG::nightly"
+ - run: echo "TAG=nightly" >> $GITHUB_ENV
85
if: github.ref != 'refs/heads/release'
86
- run: 'echo "TAG: $TAG"'
87
88
- name: Checkout repository
89
uses: actions/checkout@v2
90
91
- - run: echo "::set-env name=HEAD_SHA::$(git rev-parse HEAD)"
+ - run: echo "HEAD_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV
92
- run: 'echo "HEAD_SHA: $HEAD_SHA"'
93
94
- uses: actions/download-artifact@v1
0 commit comments