v0.1.16 #18
Workflow file for this run
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
| name: Release packages - stable | |
| on: | |
| workflow_dispatch: | |
| release: | |
| types: [published] | |
| jobs: | |
| x86_64: | |
| uses: ./.github/workflows/_release-packages.yml | |
| secrets: inherit | |
| with: | |
| repository: "stable" | |
| version_extractor: "cargotoml" | |
| arch: "x86_64" | |
| runs_on: "ubuntu-24.04" | |
| aarch64: | |
| uses: ./.github/workflows/_release-packages.yml | |
| secrets: inherit | |
| with: | |
| repository: "stable_aarch64" | |
| version_extractor: "cargotoml" | |
| arch: "aarch64" | |
| runs_on: "ubuntu-24.04-arm" | |
| # arch: no arm64 image. manjaro: Manjaro ARM repos frozen ~2024, cargo too old for edition2024 | |
| skip_distros: '["arch", "manjaro"]' |