Release-plz #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2022 PHPER Framework Team | |
# PHPER is licensed under Mulan PSL v2. | |
# You can use this software according to the terms and conditions of the Mulan | |
# PSL v2. You may obtain a copy of Mulan PSL v2 at: | |
# http://license.coscl.org.cn/MulanPSL2 | |
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY | |
# KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | |
# NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. | |
# See the Mulan PSL v2 for more details. | |
name: Release-plz | |
permissions: | |
pull-requests: write | |
contents: write | |
on: workflow_dispatch | |
env: | |
RUST_LOG: debug | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: "1" | |
RUSTFLAGS: "-D warnings" | |
LLVM_CONFIG_PATH: llvm-config-18 | |
jobs: | |
# Release unpublished packages. | |
release-plz-release: | |
name: Release-plz release | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'phper-framework' }} | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install libclang | |
run: sudo apt-get install -y llvm-18-dev libclang-18-dev | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.4 | |
tools: php-config | |
- name: Run release-plz | |
uses: release-plz/[email protected] | |
with: | |
command: release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
# Create a PR with the new versions and changelog, preparing the next release. | |
release-plz-pr: | |
name: Release-plz PR | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'phper-framework' }} | |
permissions: | |
contents: write | |
pull-requests: write | |
concurrency: | |
group: release-plz-${{ github.ref }} | |
cancel-in-progress: false | |
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: release-plz/[email protected] | |
with: | |
command: release-pr | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |