build(deps): bump ghcr.io/automattic/vip-codespaces/wp-cli from 1.1.4 to 1.2.0 in /images/src/wpvip-base #651
Workflow file for this run
This file contains 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 Base Image | |
on: | |
pull_request: | |
branches: | |
- trunk | |
merge_group: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
prepare: | |
name: Prepare list of images to build | |
runs-on: ubuntu-latest | |
outputs: | |
images: ${{ steps.set-matrix.outputs.images }} | |
steps: | |
- name: Check out the repo | |
uses: actions/[email protected] | |
- name: Set matrix | |
id: set-matrix | |
run: echo images="$(jq '."x-build"' base-images/src/*/.devcontainer.json | jq --slurp -c .)" >> "${GITHUB_OUTPUT}" | |
build: | |
needs: prepare | |
strategy: | |
fail-fast: false | |
matrix: | |
image: ${{ fromJson(needs.prepare.outputs.images) }} | |
name: Build image ${{ matrix.image.name }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Check changed files | |
id: changes | |
run: | | |
base="${{ github.event.pull_request.base.sha }}" | |
head="${{ github.event.pull_request.head.sha }}" | |
image="base-images/src/${{ matrix.image.image-name }}" | |
changes="$(git diff --name-only "${base}" "${head}" -- "${image}" | grep -Fv "${image}/README.md" || true)" | |
if [ -n "${changes}" ]; then | |
echo needs_build=true >> "${GITHUB_OUTPUT}" | |
else | |
echo needs_build=false >> "${GITHUB_OUTPUT}" | |
fi | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0 | |
if: steps.changes.outputs.needs_build == 'true' | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0 | |
if: steps.changes.outputs.needs_build == 'true' | |
- name: Install @devcontainers/cli | |
run: npm install -g @devcontainers/cli | |
if: steps.changes.outputs.needs_build == 'true' | |
- name: Expose GitHub Runtime | |
uses: Automattic/vip-actions/expose-github-runtime@e1faabf165941008de4c0c1381df153e49d8ad2c # v0.6.0 | |
if: steps.changes.outputs.needs_build == 'true' | |
- name: Build image | |
run: | | |
devcontainer build \ | |
--workspace-folder "base-images/src/${{ matrix.image.image-name }}" \ | |
--platform linux/amd64,linux/arm64 \ | |
--output type=image \ | |
--cache-from type=gha \ | |
--cache-to type=gha,mode=max | |
if: steps.changes.outputs.needs_build == 'true' |