packages/fd-aaa: improve startup display; wait for installation CD #16
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: 'CI Build' | |
| on: | |
| push: | |
| branches: ['*'] | |
| pull_request: | |
| branches: ['*'] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/aosc-dev/afterglow-fd-builder:latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Build Image | |
| env: | |
| WATCOM: /opt/owlinux | |
| run: | | |
| for i in sequence/*; do | |
| echo "::group::Build $i" | |
| ./ignite "$i" | |
| echo "::endgroup::" | |
| done | |
| - name: Upload Image | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: afterglow-fd-images | |
| path: '*.img' | |