ci: fix max-page-size=16384 for Android builds (#606) #3
This file contains 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
name: Release crates | |
permissions: | |
pull-requests: write | |
contents: write | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
# Create a PR with the new versions and changelog, preparing the next release. | |
open-pr: | |
name: Release-plz PR | |
runs-on: ubuntu-latest | |
concurrency: | |
group: release-plz-${{ github.ref }} | |
cancel-in-progress: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 512 | |
- name: Run release-plz | |
uses: release-plz/action@v0.5.86 | |
with: | |
command: release-pr | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
# Release unpublished packages. | |
release-plz-release: | |
name: Release-plz release | |
runs-on: ubuntu-latest | |
environment: cratesio-push | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 512 | |
- name: Run release-plz | |
uses: release-plz/action@v0.5.86 | |
with: | |
command: release | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_DEVOLUTIONSBOT_API_KEY }} |