Skip to content

Commit

Permalink
Merge pull request #17 from patrickjahns/ci_fix_release
Browse files Browse the repository at this point in the history
ci: fix release process with setting env in the correct way
  • Loading branch information
patrickjahns authored Dec 26, 2020
2 parents d6ba92c + 4388922 commit 26fdd1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
go-version: '^1.14.1'
- name: Set VERSION env
run: echo ::set-env name=VERSION::$(echo ${GITHUB_REF} | rev | cut -d'/' -f 1 | rev )
run: echo VERSION=$(echo ${GITHUB_REF} | rev | cut -d'/' -f 1 | rev ) >> $GITHUB_ENV
- name: Build artifacts
run: make release VERSION=${{ env.VERSION }}
- name: Upload artifactes to release
Expand Down

0 comments on commit 26fdd1a

Please sign in to comment.