|
|
@ -96,8 +96,9 @@ jobs:
|
|
|
|
tags: |
|
|
|
|
tags: |
|
|
|
|
${{ secrets.DOCKER_HUB_USERNAME }}/changedetection.io:dev,ghcr.io/${{ github.repository }}:dev
|
|
|
|
${{ secrets.DOCKER_HUB_USERNAME }}/changedetection.io:dev,ghcr.io/${{ github.repository }}:dev
|
|
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7,linux/arm/v8
|
|
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7,linux/arm/v8
|
|
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
|
|
|
|
|
|
|
|
# Looks like this was disabled
|
|
|
|
# Looks like this was disabled
|
|
|
|
# provenance: false
|
|
|
|
# provenance: false
|
|
|
|
|
|
|
|
|
|
|
@ -116,18 +117,11 @@ jobs:
|
|
|
|
${{ secrets.DOCKER_HUB_USERNAME }}/changedetection.io:latest
|
|
|
|
${{ secrets.DOCKER_HUB_USERNAME }}/changedetection.io:latest
|
|
|
|
ghcr.io/dgtlmoon/changedetection.io:latest
|
|
|
|
ghcr.io/dgtlmoon/changedetection.io:latest
|
|
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7,linux/arm/v8
|
|
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7,linux/arm/v8
|
|
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
# Looks like this was disabled
|
|
|
|
# Looks like this was disabled
|
|
|
|
# provenance: false
|
|
|
|
# provenance: false
|
|
|
|
|
|
|
|
|
|
|
|
- name: Image digest
|
|
|
|
- name: Image digest
|
|
|
|
run: echo step SHA ${{ steps.vars.outputs.sha_short }} tag ${{steps.vars.outputs.tag}} branch ${{steps.vars.outputs.branch}} digest ${{ steps.docker_build.outputs.digest }}
|
|
|
|
run: echo step SHA ${{ steps.vars.outputs.sha_short }} tag ${{steps.vars.outputs.tag}} branch ${{steps.vars.outputs.branch}} digest ${{ steps.docker_build.outputs.digest }}
|
|
|
|
|
|
|
|
|
|
|
|
- name: Cache Docker layers
|
|
|
|
|
|
|
|
uses: actions/cache@v3
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
path: /tmp/.buildx-cache
|
|
|
|
|
|
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
|
|
|
|
|
|
|
restore-keys: |
|
|
|
|
|
|
|
|
${{ runner.os }}-buildx-
|
|
|
|
|
|
|
|