about summary refs log tree commit diff
path: root/library/compiler-builtins/.github/workflows/publish.yaml
blob: 85a33c039d2a1c0c4bcf7cde5ffeb83384e605fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Release-plz

permissions:
  pull-requests: write
  contents: write

on:
  push: { branches: [master] }

jobs:
  release-plz:
    name: Release-plz
    runs-on: ubuntu-24.04
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
        with:
          fetch-depth: 0
      - name: Install Rust (rustup)
        run: rustup update nightly --no-self-update && rustup default nightly
      - name: Run release-plz
        uses: MarcoIeni/release-plz-action@v0.5
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}