Skip to content

Commit

Permalink
Merge pull request #103 from tim-hellhake/dont-prefix-versions-with-v
Browse files Browse the repository at this point in the history
Don't prefix tags with 'v'
  • Loading branch information
tim-hellhake authored Apr 27, 2021
2 parents 24c0e5e + de6a33a commit 9d72df2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Release
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+'

jobs:
build:
Expand All @@ -18,7 +18,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- name: Set release version
run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV

- name: Create Release
id: create_release
Expand Down

0 comments on commit 9d72df2

Please sign in to comment.