ci: add missing php extensions for codespaces #2
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: Codespaces | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- .devcontainer/Dockerfile | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login into Github Docker Registry | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: .devcontainer | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: "ghcr.io/friendsofshopware/shopware-cli-codespace" | |
provenance: false |