Skip to content

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Aug 2, 2024
1 parent 11f5070 commit 71241a6
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Release

on:
push:
tags:
- "*"
workflow_dispatch:

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: cargo publish
run: |
cargo publish -p pyo3-stub-gen-derive
cargo publish -p pyo3-stub-gen
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"

0 comments on commit 71241a6

Please sign in to comment.