chore: update merge workflow to work (#8) #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Semver release | |
uses: cocogitto/cocogitto-action@v3 | |
id: release | |
with: | |
release: true | |
git-user: "Superposition Bot" | |
git-user-email: "[email protected]" | |
check-latest-tag-only: true | |
- 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 |