Skip to content

Commit

Permalink
Maybe?
Browse files Browse the repository at this point in the history
  • Loading branch information
i-am-tom committed Aug 26, 2024
1 parent 2cf066e commit 226995e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/create-version-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ jobs:
- name: Is this a commit we need to tag?
id: tag_check
run: |
echo "is_tagged_commit=" >> $GITHUB_OUTPUT
echo "${{ github.event.head_commit.message }}" \
| grep "^🚀 Bump version to \d\+\.\d\+\.\d\+" \
| wc -l >> $GITHUB_OUTPUT
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
- name: Debug
run: echo ${{ steps.tag_check.outputs.is_tagged_commit }}

0 comments on commit 226995e

Please sign in to comment.