Skip to content

Commit

Permalink
Merge pull request #113 from depromeet/dev
Browse files Browse the repository at this point in the history
🔨 fix(action) : v1.0.4 에서 v 빼고 태그 집어넣기
  • Loading branch information
ImNM authored Jul 23, 2022
2 parents 881b07d + 9d68300 commit d9a03b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
uses: actions/checkout@v2
- name: Set output
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
run: |
RELEASE_VERSION_WITHOUT_V="$(cut -d'v' -f2 <<< ${GITHUB_REF#refs/*/})"
echo ::set-output name=tag::$RELEASE_VERSION_WITHOUT_V
- name: Check output
env:
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}
Expand Down

0 comments on commit d9a03b9

Please sign in to comment.