This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
Update and rename nginx8.2.yml to nginx8.3.yml #1
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: Publish Docker Image | |
on: | |
push: | |
branches: [ php83 ] | |
env: | |
IMAGE_NAME: apache | |
VERSION: v8.3 | |
jobs: | |
buildImage: | |
name: Build Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up QEMU | |
id: qemu | |
uses: docker/setup-qemu-action@master | |
with: | |
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@master | |
with: | |
driver-opts: image=moby/buildkit:master | |
- name: log into GitHub Container Registry | |
run: echo "${{ secrets.GITHUB_TOKEN}}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin | |
- uses: actions/checkout@v2 | |
- name: Build Container image | |
run: docker buildx build --platform linux/amd64,linux/arm64,linux/ppc64le,linux/s390x --build-arg SERVER_ROOT=/var/www/,DISPLAY_PHPERROR=On --tag ghcr.io/deck-app/apache:v8.3 . --push |