Skip to content

Commit

Permalink
use release-plz
Browse files Browse the repository at this point in the history
  • Loading branch information
rinde committed Oct 9, 2024
1 parent 1027440 commit f208fe0
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 53 deletions.
7 changes: 7 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Please start the title of the pull-request with either:

fix:, feat:, build:, chore:, ci:, docs:, style:, refactor:, perf:, or test:

append a `!` after the name but before the colon to indicate a breaking change, e.g. fix!:

For more information see [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary).
53 changes: 0 additions & 53 deletions .github/workflows/publish.yaml

This file was deleted.

33 changes: 33 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Run Release Plz

permissions:
pull-requests: write
contents: write

on:
push:
branches:
- main

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: taiki-e/install-action@v2
with:
tool: just
- run: |
echo "RUST_TOOLCHAIN=$(just rust-version)" >> $GITHUB_ENV
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
- name: Run release-plz
uses: MarcoIeni/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 comments on commit f208fe0

Please sign in to comment.