Skip to content

Configure github action to build images #28

Configure github action to build images

Configure github action to build images #28

Workflow file for this run

---
on:
push:
schedule:
- cron: "0 0 * * *"
name: Build images
jobs:
generate-images-matrix:
runs-on: ubuntu-latest
outputs:
images-matrix: ${{ steps.generate-images-matrix.outputs.matrix }}
output2: ${{ steps.step2.outputs.test }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate images matrix
run: echo "matrix={\"images\":[$(ls -mQ images)]}" >> $GITHUB_OUTPUT
- id: step2
run: echo "test=world" >> "$GITHUB_OUTPUT"
build-images:
runs-on: ubuntu-latest
needs: generate-images-matrix
#strategy:
# matrix:
# image: ${{ fromJSON(needs.generate-images-matrix.outputs.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: Build image
#run: echo ${{ needs }}
env:
GITHUB_CONTEXT: ${{ toJson(needs) }}
run: echo "$GITHUB_CONTEXT"
#run: ./.github/scripts/build-image.sh ${{ matrix.image }}