Maybe fix cache?
Some checks failed
release / Build and push Docker image (push) Has been cancelled

This commit is contained in:
2025-01-04 16:34:53 +03:30
parent d871bd311c
commit 4df22690f7

View File

@@ -24,15 +24,12 @@ jobs:
registry: git.mahdium.ir registry: git.mahdium.ir
username: ${{ secrets.USERNAME }} username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }} password: ${{ secrets.PASSWORD }}
# - name: Cache Docker layers
# id: cache-layers - name: Cache for Docker
# uses: actions/cache@v3 uses: actions/cache@v4
# with: with:
# path: /tmp/.buildx-cache path: image-cache
# key: ${{ runner.os }}-buildx-${{ github.ref }}-${{ github.sha }} key: ${{ runner.os }}-image-cache-${{ github.ref }}-${{ github.sha }}
# restore-keys: |
# ${{ runner.os }}-buildx-${{ github.ref }}-
# ${{ runner.os }}-buildx-
- name: Extract Docker metadata - name: Extract Docker metadata
id: meta id: meta
@@ -45,6 +42,6 @@ jobs:
context: . context: .
push: true push: true
tags: git.mahdium.ir/mahdium/cats-of-mastodon-telegram-bot${{gitea.sha}},git.mahdium.ir/mahdium/cats-of-mastodon-telegram-bot:latest tags: git.mahdium.ir/mahdium/cats-of-mastodon-telegram-bot${{gitea.sha}},git.mahdium.ir/mahdium/cats-of-mastodon-telegram-bot:latest
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=user/app:latest cache-from: type=local,src=image-cache
cache-to: type=inline cache-to: type=local,dest=image-cache