chore: 📦 Pin Sunshine-2026.403.124357-1.fc43 #100
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 solarpowered-ex | |
| on: | |
| schedule: | |
| - cron: "30 2 * * 1,5" # build at 2:30 AM UTC every Monday & Friday | |
| push: | |
| paths: | |
| - ".github/workflows/build-solarpowered-ex.yml" | |
| - "recipes/images/solarpowered-ex.yml" | |
| - "recipes/packages/solarpowered-ex.yml" | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| bluebuild: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| recipe: | |
| - images/solarpowered-ex.yml | |
| steps: | |
| - name: Optimize build times | |
| shell: bash | |
| run: | | |
| echo 'set man-db/auto-update false' | sudo debconf-communicate | |
| sudo dpkg-reconfigure man-db | |
| sudo rm -f /var/lib/man-db/auto-update | |
| sudo sed -i 's/^update_initramfs=.*/update_initramfs=no/' /etc/initramfs-tools/update-initramfs.conf | |
| - name: Build solarpowered-ex | |
| uses: blue-build/github-action@v1.11 | |
| with: | |
| recipe: ${{ matrix.recipe }} | |
| build_chunked_oci: true | |
| cosign_private_key: ${{ secrets.SIGNING_SECRET }} | |
| registry_token: ${{ github.token }} | |
| pr_event_number: ${{ github.event.number }} | |
| maximize_build_space: true | |
| retry_push_count: 3 | |
| build_opts: --rechunk-clear-plan | |
| # generate_release: | |
| # name: Generate Release | |
| # permissions: | |
| # contents: write | |
| # needs: [bluebuild] | |
| # if: github.event_name != 'pull_request' | |
| # secrets: inherit | |
| # uses: ./.github/workflows/release.yml |