Skip to content

Commit

Permalink
Merge pull request #162 from matthewshafer/fix-release-action
Browse files Browse the repository at this point in the history
Fix create release action
  • Loading branch information
matthewshafer authored Jan 21, 2021
2 parents 33df666 + 907dd4c commit e072db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup ENV
id: custom-env
run: |
export CIRCUITBOX_VERSION=$(echo ${RELEASE_TAG} | cut -c2-)
export CIRCUITBOX_VERSION=$(echo ${RELEASE_TAG#refs/tags/} | cut -c2-)
echo "::set-output name=gem_filename::circuitbox-${CIRCUITBOX_VERSION}.gem"
if echo $CIRCUITBOX_VERSION | grep -q "pre"
Expand Down

0 comments on commit e072db6

Please sign in to comment.