Compare commits

..

No commits in common. "main" and "v0.13.7-s0.0.9" have entirely different histories.

View file

@ -37,6 +37,8 @@ jobs:
id: docker_build_monolith id: docker_build_monolith
uses: docker/build-push-action@v3 uses: docker/build-push-action@v3
with: with:
cache-from: type=registry,ref=git.sigb.us/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:buildcache
cache-to: type=registry,ref=git.sigb.us/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:buildcache,mode=max
context: . context: .
platforms: ${{ env.PLATFORMS }} platforms: ${{ env.PLATFORMS }}
push: true push: true
@ -50,10 +52,12 @@ jobs:
id: docker_build_monolith_release id: docker_build_monolith_release
uses: docker/build-push-action@v3 uses: docker/build-push-action@v3
with: with:
cache-from: type=gha
cache-to: type=gha,mode=max
context: . context: .
platforms: ${{ env.PLATFORMS }} platforms: ${{ env.PLATFORMS }}
push: true push: true
tags: | tags: |
git.sigb.us/${{ env.GHCR_NAMESPACE }}/dendrite:latest git.sigb.us/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:latest
git.sigb.us/${{ env.GHCR_NAMESPACE }}/dendrite:stable git.sigb.us/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:stable
git.sigb.us/${{ env.GHCR_NAMESPACE }}/dendrite:${{ env.RELEASE_VERSION }} git.sigb.us/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:${{ env.RELEASE_VERSION }}