-
Notifications
You must be signed in to change notification settings - Fork 1
72 lines (61 loc) · 2.05 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Build
on:
schedule:
- cron: '5 0 * * *'
workflow_dispatch:
push:
branches:
- main
paths:
- Dockerfile
- matrix.nu
env:
DOCKER_BUILDKIT: 1
permissions:
contents: read
packages: write
id-token: write
jobs:
generate-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.generate-matrix.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Nushell
uses: hustcer/setup-nu@v3.8
- name: Generate Matrix
id: generate-matrix
run: |
MATRIX=$(nu matrix.nu)
echo "matrix<<EOF" >> $GITHUB_OUTPUT
echo "$MATRIX" >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
build:
name: "${{ matrix.minorShopwareVersion }} (${{ matrix.shopwareVersion }})"
runs-on: ubuntu-latest
needs: [generate-matrix]
strategy: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login into Docker Hub
run: echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_USERNAME }}" --password-stdin
- name: Login into Github Docker Registery
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --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: |
ghcr.io/friendsofshopware/shopware-demo-environment:${{ matrix.minorShopwareVersion }}
friendsofshopware/shopware-demo-environment:${{ matrix.minorShopwareVersion }}
platforms: linux/amd64,linux/arm64
build-args: |
PHP_VERSION=${{ matrix.phpVersion }}
SHOPWARE_VERSION=${{ matrix.shopwareVersion }}
push: true
provenance: false