build: move release-plz to separate file so it runs only on master branch

This commit is contained in:
Chris Hennick 2024-04-22 19:28:13 -07:00
parent 5e64caf476
commit 58fd54c439
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
2 changed files with 24 additions and 19 deletions

View file

@ -265,22 +265,3 @@ jobs:
with: with:
name: fuzz_write_no_features_corpus name: fuzz_write_no_features_corpus
path: fuzz/corpus/seed/* path: fuzz/corpus/seed/*
release-plz:
name: Release-plz
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
profile: minimal
- name: Run release-plz
uses: MarcoIeni/release-plz-action@v0.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

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

@ -0,0 +1,24 @@
name: Release
on:
push:
branches:
- 'master'
jobs:
release-plz:
name: Release-plz
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
profile: minimal
- name: Run release-plz
uses: MarcoIeni/release-plz-action@v0.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}