Skip to content

Configure github action to build images #20

Configure github action to build images

Configure github action to build images #20

Workflow file for this run

---
on:
push:
schedule:
- cron: "0 0 * * *"
jobs:
generate-images-matrix:
runs-on: ubuntu-latest
outputs:
images-matrix: ${{ steps.generate-images-matrix.outputs.images-matrix }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate images matrix
run: echo "images-matrix={\"images\": [$(ls -mQ images)]}" | tee $GITHUB_OUTPUT

Check failure on line 16 in .github/workflows/build-images.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-images.yaml

Invalid workflow file

You have an error in your yaml syntax on line 16
build-images:
runs-on: ubuntu-latest
needs: generate-images-matrix
strategy:
matrix:
image: ${{ fromJSON(needs.generate-images-matrix.outputs.images-matrix).images }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Github container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run build script
run: ./.github/scripts/build-image.sh ${{ matrix.image }}