Fix: use per-distro asset files; assets/all was not identical across … #2
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 Debian | |
| on: | |
| schedule: | |
| - cron: '0 6 * * 1' # every Monday 06:00 UTC | |
| workflow_dispatch: | |
| push: | |
| branches: [master] | |
| paths: | |
| - Dockerfile.debian | |
| - 'input/**' | |
| - 'assets/common/**' | |
| - 'assets/debian/**' | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build-image.yml | |
| with: | |
| image_name: userland-debian | |
| upstream_image: debian:latest | |
| dockerfile: Dockerfile.debian | |
| platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/386 | |
| secrets: inherit |