Skip to content

Commit

Permalink
πŸš€ Bump version to 2.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
i-am-tom committed Aug 26, 2024
1 parent 44b1876 commit 11abd44
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/create-version-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,8 @@ jobs:
CARGO_NET_GIT_FETCH_WITH_CLI: "true"

steps:
- uses: Swatinem/rust-cache@v2
with:
shared-key: "build" # share the cache across jobs
save-if: false

- name: Install Ripgrep
run: cargo install ripgrep
run: sudo apt-get install ripgrep

- name: Is this a commit we need to tag?
id: tag_check
Expand All @@ -38,7 +33,9 @@ jobs:
echo "${{ github.event.head_commit.message }}" \
| cut -d " " -f 5 \
)
echo "tag_version=v${new_version}" >> $GITHUB_OUTPUT
echo "tag_version=v$new_version" >> $GITHUB_OUTPUT
echo $new_version
echo $GITHUB_OUTPUT
- run: echo "${{ steps.get-version.tag_version }}"
if: steps.tag_check.outputs.is_tagged_commit == 1

0 comments on commit 11abd44

Please sign in to comment.