From 58fd54c439ad7cd1a9a04c3fb90e284a70caf3ea Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 22 Apr 2024 19:28:13 -0700 Subject: [PATCH] build: move release-plz to separate file so it runs only on master branch --- .github/workflows/ci.yaml | 19 ------------------- .github/workflows/release-plz.yml | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+), 19 deletions(-) create mode 100644 .github/workflows/release-plz.yml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8b111765..bc290157 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -265,22 +265,3 @@ jobs: with: name: fuzz_write_no_features_corpus 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 }} \ No newline at end of file diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml new file mode 100644 index 00000000..e8a8be11 --- /dev/null +++ b/.github/workflows/release-plz.yml @@ -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 }} \ No newline at end of file