Skip to content

Commit

Permalink
Have we done it
Browse files Browse the repository at this point in the history
  • Loading branch information
i-am-tom committed Aug 26, 2024
1 parent 41bfa82 commit 930e189
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/create-version-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ jobs:
- name: Is this a commit we need to tag?
id: tag_check
run: |
is_tagged_commit="${{ github.event.head_commit.message }}" \
| grep "^🚀 Bump version to \d\+\.\d\+\.\d\+" | wc -l
echo "is_tagged_commit=$is_tagged_commit" >> $GITHUB_OUTPUT
is_tagged_commit=$( \
echo "${{ github.event.head_commit.message }}" \
| grep "^🚀 Bump version to \d\+\.\d\+\.\d\+" | wc -l \
)
echo "is_tagged_commit=$(($is_tagged_commit))" >> $GITHUB_OUTPUT
- name: Debug again
env:
Expand Down

0 comments on commit 930e189

Please sign in to comment.