Compare commits

..

2 Commits

Author SHA1 Message Date
78364930f2 add release-plz GitHub Actions workflow 2024-07-12 21:09:35 -04:00
e2b24488e2 stop testing nightly in GitHub Actions 2024-07-12 21:09:22 -04:00
2 changed files with 27 additions and 1 deletions

View File

@@ -18,7 +18,6 @@ jobs:
- windows-latest - windows-latest
toolchain: toolchain:
- stable - stable
- nightly
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

27
.github/workflows/release-plz.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Release-plz
permissions:
pull-requests: write
contents: write
on:
push:
branches:
- main
jobs:
release-plz:
name: Release-plz
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run release-plz
uses: MarcoIeni/release-plz-action@v0.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}