dl/.gitea/workflows/dl.yml
Michel Roux 538a5d62d7
Some checks failed
dl / lint (push) Successful in 1m29s
dl / docker (push) Failing after 43s
add node
2023-06-25 15:47:28 +02:00

36 lines
990 B
YAML

name: dl
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: https://git.crystalyx.net/Xefir/actions-setup-python@main
with:
python-version: 3.10
- 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 nodejs
- uses: actions/checkout@v3
- uses: https://github.com/docker/metadata-action@v4
with:
images: dl/xefir
- 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: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}