Skip to content

Commit 83338dc

Browse files
Release 2.0.0-alpha.9
Signed-off-by: Paulchen Panther <Paulchen-Panter@protonmail.com>
1 parent c4e15db commit 83338dc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/push-master.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -205,14 +205,14 @@ jobs:
205205
# generate environment variables
206206
- name: Generate environment variables from version and tag
207207
run: |
208-
echo ::set-env name=TAG::${GITHUB_REF/refs\/tags\//}
209-
echo ::set-env name=VERSION::$(tr -d '\n' < version)
210-
echo ::set-env name=preRelease::false
208+
echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
209+
echo "VERSION=$(tr -d '\n' < version)" >> $GITHUB_ENV
210+
echo "preRelease=false" >> $GITHUB_ENV
211211
212212
# If version contains alpha or beta, mark draft release as pre-release
213213
- name: Mark release as pre-release
214214
if: contains(env.VERSION, 'alpha') || contains(env.VERSION, 'beta')
215-
run: echo ::set-env name=preRelease::true
215+
run: echo "preRelease=true" >> $GITHUB_ENV
216216

217217
# Download artifacts from previous build process
218218
- name: Download artifacts

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0-alpha.8
1+
2.0.0-alpha.9

0 commit comments

Comments
 (0)