chore(deps): update bootc-image-builder digest to ee18461 (main) #442
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
| permissions: | |
| contents: read | |
| packages: write | |
| name: PR build test | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - Containerfile | |
| - .github/workflows/pr-build.yaml | |
| - bootc-image-builder | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: PR build test | |
| runs-on: ubuntu-latest | |
| env: | |
| IMAGE_NAME: framework-fedora-bootc | |
| REGISTRY: ghcr.io/compphy | |
| steps: | |
| - name: Clone the repository | |
| uses: actions/checkout@v6 | |
| # Based on https://github.com/orgs/community/discussions/25678 | |
| - name: Delete huge unnecessary tools folder | |
| run: rm -rf /opt/hostedtoolcache | |
| - name: Use buildah build to create the image | |
| id: build-image | |
| uses: redhat-actions/buildah-build@v2 | |
| with: | |
| image: ${{ env.IMAGE_NAME }} | |
| layers: True | |
| containerfiles: | | |
| ./Containerfile |