Skip to content

Commit

Permalink
Hotfix: remove space in TAG env var
Browse files Browse the repository at this point in the history
  • Loading branch information
myoung34 committed Dec 14, 2020
1 parent c9946b6 commit b1dced6
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 @@ -28,7 +28,7 @@ jobs:
- name: Copy Repo Files
uses: actions/checkout@master
- name: get version
run: echo 'TAG=' ${GITHUB_REF#refs/tags/} >> $GITHUB_ENV
run: echo 'TAG='${GITHUB_REF#refs/tags/} >> $GITHUB_ENV
- name: Get GitHub organization or user
run: echo 'ORG='$(dirname ${GITHUB_REPOSITORY}) >> $GITHUB_ENV
- name: Set up Docker Buildx
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Copy Repo Files
uses: actions/checkout@master
- name: get version
run: echo 'TAG=' ${GITHUB_REF#refs/tags/} >> $GITHUB_ENV
run: echo 'TAG='${GITHUB_REF#refs/tags/} >> $GITHUB_ENV
- name: Get GitHub organization or user
run: echo 'ORG='$(dirname ${GITHUB_REPOSITORY}) >> $GITHUB_ENV
- name: Set up Docker Buildx
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Copy Repo Files
uses: actions/checkout@master
- name: get version
run: echo 'TAG=' ${GITHUB_REF#refs/tags/} >> $GITHUB_ENV
run: echo 'TAG='${GITHUB_REF#refs/tags/} >> $GITHUB_ENV
- name: Get GitHub organization or user
run: echo 'ORG='$(dirname ${GITHUB_REPOSITORY}) >> $GITHUB_ENV
- name: Set up Docker Buildx
Expand Down

0 comments on commit b1dced6

Please sign in to comment.