dl/.gitea/workflows/dl.yml
Michel Roux 4952c42799
All checks were successful
dl / lint (push) Successful in 9m30s
dl / docker (push) Successful in 39m1s
push to docker hub again
2023-09-15 09:59:41 +02:00

42 lines
1.1 KiB
YAML

name: dl
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
container: python:3.11
steps:
- run: apt-get update
- run: apt-get install -y git nodejs
- uses: actions/checkout@v3
- uses: Gr1N/setup-poetry@v8
- run: poetry install
- run: poetry run flake8 .
- run: poetry run mypy .
docker:
runs-on: ubuntu-latest
container: docker
needs: [lint]
steps:
- run: apk add git nodejs
- uses: actions/checkout@v3
- uses: docker/metadata-action@v4
id: meta
with:
images: xefir/dl
tags: |
type=schedule
type=ref,event=tag
type=ref,event=pr
type=raw,value=latest,enable={{is_default_branch}}
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v4
with:
push: ${{ gitea.ref == 'refs/heads/master' || startsWith(gitea.ref, 'refs/tags') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}