dl/.gitea/workflows/dl.yml
Renovate Bot e7ba9e3eb7
All checks were successful
dl / lint (push) Successful in 1m9s
dl / docker (push) Successful in 23s
Update python Docker tag to v3.11
2023-09-11 06:53:41 +00:00

43 lines
1.2 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: git.crystalyx.net/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:
registry: git.crystalyx.net
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_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 }}