Skip to content

Commit

Permalink
Release 2.0.0-alpha.9
Browse files Browse the repository at this point in the history
Signed-off-by: Paulchen Panther <[email protected]>
  • Loading branch information
Paulchen-Panther committed Nov 18, 2020
1 parent c4e15db commit 83338dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,14 +205,14 @@ jobs:
# generate environment variables
- name: Generate environment variables from version and tag
run: |
echo ::set-env name=TAG::${GITHUB_REF/refs\/tags\//}
echo ::set-env name=VERSION::$(tr -d '\n' < version)
echo ::set-env name=preRelease::false
echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
echo "VERSION=$(tr -d '\n' < version)" >> $GITHUB_ENV
echo "preRelease=false" >> $GITHUB_ENV
# If version contains alpha or beta, mark draft release as pre-release
- name: Mark release as pre-release
if: contains(env.VERSION, 'alpha') || contains(env.VERSION, 'beta')
run: echo ::set-env name=preRelease::true
run: echo "preRelease=true" >> $GITHUB_ENV

# Download artifacts from previous build process
- name: Download artifacts
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0-alpha.8
2.0.0-alpha.9

0 comments on commit 83338dc

Please sign in to comment.