Add bug fix category to release.yml #7
Workflow file for this run
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: Release Rust SDK | |
on: | |
push: | |
tags: | |
- rust-* | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: cargo publish | |
run: | | |
cargo publish -p ommx | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
next_version: | |
runs-on: ubuntu-latest | |
needs: publish | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install cargo-edit | |
run: cargo install cargo-edit | |
- name: Bump version | |
run: | | |
cargo set-version --bump patch | |
echo "NEW_VERSION=$(cargo metadata --no-deps --format-version=1 | jq -r '.packages[0].version')" >> $GITHUB_ENV | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
title: "Start developing ${{ env.NEW_VERSION }}" | |
branch: "rust-version-update/${{ env.NEW_VERSION }}" | |
base: "main" |