Build Arch #14
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: Build Arch | |
| on: | |
| schedule: | |
| - cron: '0 9 * * 1' # every Monday 09:00 UTC (staggered) | |
| workflow_dispatch: | |
| push: | |
| branches: [master] | |
| paths: | |
| - Dockerfile.arch | |
| - 'input/**' | |
| - 'assets/common/**' | |
| - 'assets/arch/**' | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build-image.yml | |
| with: | |
| image_name: userland-arch | |
| # Track the ARM image; archlinux:latest (amd64) is also a base but single-arch | |
| upstream_image: menci/archlinuxarm:latest | |
| dockerfile: Dockerfile.arch | |
| platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
| secrets: inherit |