Skip to content

Commit

Permalink
Merge branch 'master' into patch-6
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgramComputer authored Dec 31, 2023
2 parents 7633180 + 38be41a commit aa7d411
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false

matrix:
platform: #change platform here and below if changed
- linux/amd64
Expand All @@ -28,22 +29,21 @@ jobs:
- linux/mips64le
- linux/ppc64le
- linux/s390x

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
Expand All @@ -53,13 +53,12 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
platforms: ${{ matrix.platform }}
push: true
platforms: linux/amd64,linux/386,linux/arm/v5,linux/arm/v7,linux/arm64,linux/mips64le,linux/ppc64le,linux/s390x
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=oci,dest=/tmp/image.tar
if: ${{ github.event_name == 'release'}}
- name: Upload binaries to release
if: ${{ github.event_name == 'release'}}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
LABEL org.opencontainers.image.source = "https://github.com/HugoFara/lwt"


FROM php:8.1-apache-bullseye

# creating config file php.ini
Expand Down

0 comments on commit aa7d411

Please sign in to comment.