Gitea actions final fix
All checks were successful
release / Build and push Docker image (push) Successful in 1m34s

This commit is contained in:
2025-01-04 17:34:40 +03:30
parent cabdb39a55
commit aaee37c359

View File

@@ -14,14 +14,12 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: read
packages: write packages: write
attestations: write
id-token: write
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Log in to the Container registry - name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with: with:
@@ -33,10 +31,12 @@ jobs:
uses: docker/metadata-action@v4 uses: docker/metadata-action@v4
with: with:
images: git.mahdium.ir/mahdium/cats-of-mastodon-telegram-bot images: git.mahdium.ir/mahdium/cats-of-mastodon-telegram-bot
- name: Build and push - name: Build and push Docker image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v4
with: with:
context: . context: .
push: true push: true
tags: | # tags: git.mahdium.ir/mahdium/cats-of-mastodon-telegram-bot${{gitea.sha}},git.mahdium.ir/mahdium/cats-of-mastodon-telegram-bot:latest
git.mahdium.ir/mahdium/cats-of-mastodon-telegram-bot:latest # labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}