From b87a754b64d0af4a0d861c38412bc002a3774518 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Thu, 11 Apr 2024 13:53:56 +0200 Subject: [PATCH] first go at creating the build action --- .github/workflows/docker.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/docker.yml diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 0000000..a6d9642 --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,25 @@ +name: Build and Publish Docker Images +on: + push: + +jobs: + buildmatrix: + name: Create Build Matrix + runs-on: ubuntu-latest + outputs: + matrix: ${{ steps.set-matrix.outputs.matrix }} + steps: + - name: Set up matrix + id: set-matrix + run: | + echo "matrix=$(curl https://download.dokuwiki.org/version | jq '{release: [.[]]}')" >> $GITHUB_OUTPUT + echo $GITHUB_OUTPUT + + build: + needs: buildmatrix + name: Build Docker Images + runs-on: ubuntu-latest + strategy: + matrix: ${{fromJson(needs.buildmatrix.outputs.matrix)}} + steps: + - run: echo ${{ matrix.release }}