summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com>2024-03-04 09:05:03 +0100
committerGitHub <noreply@github.com>2024-03-04 09:05:03 +0100
commit24cdd19e2cb39092792e6436cc6452940fe81f86 (patch)
treed8235cf9c31a128b1aa2216a880e9e242dcf0fb7
parent5f755db185937b33f38a30e7f6facfa5be0f146a (diff)
Create release-plz.yaml
-rw-r--r--.github/workflows/release-plz.yaml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/release-plz.yaml b/.github/workflows/release-plz.yaml
new file mode 100644
index 0000000..6f8f43d
--- /dev/null
+++ b/.github/workflows/release-plz.yaml
@@ -0,0 +1,28 @@
+name: Release-plz
+
+permissions:
+ pull-requests: write
+ contents: write
+
+on:
+ push:
+ branches:
+ - master
+
+jobs:
+
+ release-plz:
+ name: Release-plz
+ runs-on: ubuntu-22.04
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+ 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 }}