dl/.gitea/workflows/dl.yml
Michel Roux 9d3629499e
All checks were successful
dl / lint (push) Successful in 1m26s
dl / docker (push) Successful in 37s
fix ci
2023-06-25 23:03:37 +02:00

38 lines
1.1 KiB
YAML

name: dl
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
container: python:3.10
steps:
- run: apt-get update
- run: apt-get install -y git nodejs
- uses: actions/checkout@v3
- uses: https://github.com/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: https://github.com/docker/metadata-action@v4
id: meta
with:
images: xefir/dl
flavor: latest=${{ gitea.ref == 'refs/heads/master' }}
- uses: https://github.com/docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: https://github.com/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 }}