Skip to content

Commit

Permalink
[do_tag] tag and release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Patro committed Jul 12, 2024
1 parent 7c8c3d2 commit 18c7176
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/sanitize-cargo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Sanitize Cargo
on:
push:
branches:
- main

permissions:
contents: master

jobs:
sanitize_cargo_file:
if: "contains(github.event.head_commit.message, '[do_tag]')"
runs-on: ubuntu-latest
# This is optional; it exposes the plan to your job as an environment variable
#env:
# PLAN: ${{ inputs.plan }}
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.PAT_TOK }}
- uses: dtolnay/rust-toolchain@stable
- name: Install cargo-sanitize
run: |
cargo install cargo-sanitize
- name: Sanitize Cargo.toml file
run: |
cp Cargo.toml Cargo.toml.cs_orig
cargo-sanitize -i Cargo.toml.cs_orig -o Cargo.toml
- name: Tag and push new commit
run: |
export VERSION_TAG=`cargo read-manifest | jq ".version" | tr -d '"'`
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add Cargo.toml.cs_orig
git add Cargo.toml
git commit -m "create sanitized release"
git tag --force -a v${VERSION_TAG} -m "version ${VERSION_TAG}"
git push --force origin v${VERSION_TAG}

0 comments on commit 18c7176

Please sign in to comment.