Skip to content

Commit

Permalink
Let's try it
Browse files Browse the repository at this point in the history
  • Loading branch information
i-am-tom committed Aug 26, 2024
1 parent b415011 commit 2cf066e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/create-version-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,13 @@ jobs:
CARGO_NET_GIT_FETCH_WITH_CLI: "true"

steps:
- run: echo ${{ github.event.head_commit.message }}
- 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
- name: Debug
run: echo ${{ steps.tag_check.outputs.is_tagged_commit }}

0 comments on commit 2cf066e

Please sign in to comment.