Skip to content

Commit

Permalink
Merge pull request #11 from openfga/fixes_tag_name
Browse files Browse the repository at this point in the history
fix: tag name.
  • Loading branch information
jcchavezs authored Jul 9, 2024
2 parents bbe7d7b + ba4467c commit ab0f0d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
if [ "${{ github.event_name }}" == "pull_request" ]; then
echo "value=dev" >> $GITHUB_OUTPUT
else
echo "value=${{ github.ref }}" >> $GITHUB_OUTPUT
name=$(echo "${{ github.ref }}" | sed 's/refs\/heads\///')
echo "value=$name" >> $GITHUB_OUTPUT
fi
- name: Setup Go
Expand Down

0 comments on commit ab0f0d2

Please sign in to comment.