Skip to content

Commit

Permalink
Merge pull request #277 from itroyano/patch-2
Browse files Browse the repository at this point in the history
tag without v
  • Loading branch information
komish authored Sep 29, 2021
2 parents f756bf4 + 5c9ea0b commit 333adaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build Release
on:
push:
tags:
- "v*.*.*"
- "[0-9]+.[0-9]+.[0-9]+"

jobs:
build-release:
Expand All @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set Env Tags
run: echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
run: echo RELEASE_TAG=$(echo $GITHUB_REF | cut -d '/' -f 3) >> $GITHUB_ENV

- name: Build Image
id: build-image
Expand Down

0 comments on commit 333adaf

Please sign in to comment.