Skip to content

Commit 5d77cec

Browse files
committed
Reconcile with 8.1-bullseye
1 parent a0b31f1 commit 5d77cec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test_buildx_and_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
3636
Publish:
3737
# Completely avoid forks and pull requests to try this job.
38-
if: github.repository_owner == 'moodlehq' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
38+
if: github.repository_owner == 'moodlehq' && contains(fromJson('["push", "workflow_dispatch"]'), github.event_name)
3939
# Requires Test to pass
4040
needs: Test
4141
runs-on: ubuntu-latest

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM php:8.1-apache-bullseye
22

3-
# So we can use it anywhere for conditional stuff. Keeping BC with old (non-buildkit, builders).
3+
# So we can use it anywhere for conditional stuff. Keeping BC with old (non-buildkit, builders)
44
ARG TARGETPLATFORM
55
ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
66
RUN echo "Building for ${TARGETPLATFORM}"

0 commit comments

Comments
 (0)