Compare commits

..

No commits in common. "bf47520d3191fdc8dcadfd4b0add7e846e157f91" and "92462bd3168c77c82e5d8c3b9804f86eeb35724d" have entirely different histories.

View File

@ -18,6 +18,16 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
# - name: Cache Docker layers
# uses: actions/cache@v3
# with:
# path: |
# /tmp/.buildx-cache.bookworm
# /tmp/.buildx-cache.latest
# key: ${{ runner.os }}-buildx-${{ github.sha }}
# restore-keys: |
# ${{ runner.os }}-buildx-
- name: Login to Docker
uses: docker/login-action@v1
with:
@ -26,7 +36,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@master
with:
context: .
push: true
@ -34,11 +44,3 @@ jobs:
tags: git.joshuacoles.me/${{ github.repository }}:latest,git.joshuacoles.me/${{ github.repository }}:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max
- uses: robiningelbrecht/ntfy-action@v1.0.0
name: Notify via ntfy.sh
if: always()
with:
url: ${{ secrets.NTFY_URL }}
topic: ${{ secrets.NTFY_TOPIC }}
job_status: ${{ job.status }}