Skip to content

Commit

Permalink
Try to publish latest arm docker builds to ghcr.io
Browse files Browse the repository at this point in the history
This works for Synapse latest:
https://github.com/matrix-org/synapse/pkgs/container/synapse/118785109?tag=latest

I don't know _why_ it works, but I'm noticed some differences between
Synapse and SSync. Let's see if they help.
  • Loading branch information
David Robertson committed Aug 17, 2023
1 parent 75b3d16 commit 97b21d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

env:
GHCR_NAMESPACE: matrix-org
PLATFORMS: "linux/amd64, linux/arm64"
PLATFORMS: "linux/amd64,linux/arm64"

jobs:
slidingsync:
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Build main sliding sync image
if: github.ref_name == 'main'
id: docker_build_sliding_sync
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
cache-from: type=gha
cache-to: type=gha,mode=max
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Build release Sliding Sync image
if: github.event_name == 'release' # Only for GitHub releases
id: docker_build_sliding_sync_release
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down

0 comments on commit 97b21d4

Please sign in to comment.