Files
parentzone_downloader/.gitea/workflows/build.yml
Tudor Sitaru 6633d4c91f
Some checks failed
Build Docker Image / build (push) Failing after 2m1s
push image to registry
2025-10-09 20:48:46 +01:00

53 lines
1.5 KiB
YAML

name: Build Docker Image
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: ${{ gitea.server_url }}
username: ${{ gitea.actor }}
password: ${{ secrets.GITEA_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ gitea.server_url }}/${{ gitea.repository }}/parentzone-downloader
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha,prefix={{branch}}-
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Test Docker image
run: |
docker run --rm ${{ gitea.server_url }}/${{ gitea.repository }}/parentzone-downloader:latest python --version
docker run --rm ${{ gitea.server_url }}/${{ gitea.repository }}/parentzone-downloader:latest ls -la /app