Skip to content

fix: post merge release tagging #37

fix: post merge release tagging

fix: post merge release tagging #37

name: Create release tags
permissions:
contents: write
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tag-release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.76.0
targets: wasm32-unknown-unknown
components: rustfmt, clippy
- name: install cocogitto
uses: baptiste0928/[email protected]
with:
crate: cocogitto, cargo-edit
- name: Semver release
shell: bash
run: |
cog bump --auto --skip-ci-override "[skip ci]"
- name: Push code to main
shell: bash
run: |
git config user.email "[email protected]"
git config user.name "Superposition Bot"
git push --follow-tags origin main