aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yaml
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2021-04-26 15:12:07 +0100
committerKirill Bulatov <[email protected]>2021-04-26 15:12:13 +0100
commitc24bdab97e53943fd36cf4e63047785b9c08077b (patch)
tree485371c10449f0da91f2170a9ae904cca678f60d /.github/workflows/release.yaml
parenteee50b6921662dee766c987e1a0b15b371e141d1 (diff)
Use -u instead of --utc date flag
Diffstat (limited to '.github/workflows/release.yaml')
-rw-r--r--.github/workflows/release.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index b50ca9a6f..d5c93f69b 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -261,7 +261,7 @@ jobs:
261 with: 261 with:
262 node-version: 12.x 262 node-version: 12.x
263 263
264 - run: echo "TAG=$(date --iso --utc)" >> $GITHUB_ENV 264 - run: echo "TAG=$(date --iso -u)" >> $GITHUB_ENV
265 if: github.ref == 'refs/heads/release' 265 if: github.ref == 'refs/heads/release'
266 - run: echo "TAG=nightly" >> $GITHUB_ENV 266 - run: echo "TAG=nightly" >> $GITHUB_ENV
267 if: github.ref != 'refs/heads/release' 267 if: github.ref != 'refs/heads/release'