Skip to content

Commit

Permalink
Merge pull request #40 from nidr0x/wordpress-6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nidr0x authored Apr 4, 2024
2 parents 83a5c3c + 1d26c23 commit ae21697
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/docker-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- cron: '0 0 * * *'
push:
tags:
- 'refs/tags/*'

env:
REGISTRY: ghcr.io
Expand All @@ -23,21 +22,21 @@ jobs:
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

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

- name: Log in to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
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.4.0
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.USER }}/${{ env.IMAGE_NAME }}

Expand All @@ -48,7 +47,7 @@ jobs:
id: wordpress

- name: Build Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ FROM public.ecr.aws/docker/library/alpine:3.19
LABEL Maintainer="Carlos R <[email protected]>" \
Description="Slim WordPress image using Alpine Linux"

ENV WP_VERSION 6.4.3
ENV WP_VERSION 6.5
ENV WP_LOCALE en_US

ARG UID=82
Expand Down

0 comments on commit ae21697

Please sign in to comment.