name: CI on: push: branches: - 'master' jobs: build_act: runs-on: 'ubuntu-latest' steps: - name: Install Docker run: curl -fsSL https://get.docker.com | sh - name: Set up QEMU uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3' - name: Setup Buildx uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3' - name: Login to Registry uses: 'https://git.euph.dev/actions/docker-login@v3' with: registry: git.euph.dev username: ${{ secrets.DEPLOY_USER }} password: ${{ secrets.DEPLOY_SECRET }} - name: Build and push act base image id: build_act_base uses: 'https://git.euph.dev/actions/docker-build-push@v5' with: context: "{{defaultContext}}:images/actions/act" push: true tags: | git.euph.dev/actions/runner-basic:latest build_php: runs-on: 'ubuntu-latest' container: image: "git.euph.dev/actions/runner-basic:latest" needs: build_act strategy: matrix: version: [8.1, 8.2] steps: - name: Set up QEMU uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3' - name: Setup Buildx uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3' - name: Login to Registry uses: 'https://git.euph.dev/actions/docker-login@v3' with: registry: git.euph.dev username: ${{ secrets.DEPLOY_USER }} password: ${{ secrets.DEPLOY_SECRET }} - name: Build and push php image uses: 'https://git.euph.dev/actions/docker-build-push@v5' with: context: "{{defaultContext}}:images/actions/php" push: true tags: | git.euph.dev/actions/runner-php-${{ matrix.version }}:latest env: PACKAGE_VERSION: ${{ matrix.version }}