Skip to content

Commit

Permalink
chore(workflow): Fix publish docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
baumandm committed Jan 26, 2022
1 parent 6f09ed1 commit dc24e5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
- name: Parse release version
run: |
VERSION=${GITHUB_REF_NAME#v*}
MAJOR=$(echo $VERSION | cut -d. -f1)
MINOR=$(echo $VERSION | cut -d. -f2)
PATCH=$(echo $VERSION | cut -d. -f3)
echo "MAJOR=$(echo $VERSION | cut -d. -f1)" >> $GITHUB_ENV
echo "MINOR=$(echo $VERSION | cut -d. -f2)" >> $GITHUB_ENV
echo "PATCH=$(echo $VERSION | cut -d. -f3)" >> $GITHUB_ENV
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/#-action@v1
Expand Down

0 comments on commit dc24e5e

Please # to comment.