Build #52
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 | |
on: | |
schedule: | |
- cron: '5 0 * * *' | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- Dockerfile.php | |
env: | |
DOCKER_BUILDKIT: 1 | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
jobs: | |
base: | |
name: "${{ matrix.version }}" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: | |
- 8.2 | |
- 8.3 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login into Docker Registery | |
run: echo "${{ secrets.QUAY_ROBOT_PASSWORD }}" | docker login quay.io -u friendsofshopware+devcontainer_gh_actions --password-stdin | |
- name: Install and configure Namespace CLI | |
uses: namespacelabs/nscloud-setup@v0 | |
- name: Configure Namespace powered Buildx | |
uses: namespacelabs/nscloud-setup-buildx-action@v0 | |
- uses: docker/build-push-action@v5 | |
with: | |
tags: quay.io/friendsofshopware/devcontainer:base-${{ matrix.version }} | |
platforms: linux/amd64,linux/arm64 | |
file: Dockerfile.php | |
build-args: | | |
PHP_VERSION=${{ matrix.version }} | |
push: true | |
provenance: false | |
generate-matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.generate-matrix.outputs.matrix }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Generate Matrix | |
id: generate-matrix | |
run: | | |
MATRIX=$(node matrix.mjs) | |
echo "matrix<<EOF" >> $GITHUB_OUTPUT | |
echo "$MATRIX" >> $GITHUB_OUTPUT | |
echo 'EOF' >> $GITHUB_OUTPUT | |
build-shopware: | |
runs-on: ubuntu-latest | |
needs: | |
- base | |
- generate-matrix | |
strategy: | |
fail-fast: false | |
matrix: | |
include: ${{ fromJson(needs.generate-matrix.outputs.matrix) }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login into Docker Registery | |
run: echo "${{ secrets.QUAY_ROBOT_PASSWORD }}" | docker login quay.io -u friendsofshopware+devcontainer_gh_actions --password-stdin | |
- name: Install and configure Namespace CLI | |
uses: namespacelabs/nscloud-setup@v0 | |
- name: Configure Namespace powered Buildx | |
uses: namespacelabs/nscloud-setup-buildx-action@v0 | |
- uses: docker/build-push-action@v5 | |
with: | |
tags: quay.io/friendsofshopware/devcontainer:${{ matrix.tag }}-${{ matrix.phpVersion }} | |
platforms: linux/amd64,linux/arm64 | |
file: Dockerfile | |
build-args: | | |
PHP_VERSION=${{ matrix.phpVersion }} | |
SHOPWARE_VERSION=${{ matrix.swVersion }} | |
push: true | |
provenance: false |