test new act
Some checks failed
dl / lint (push) Failing after 6s
dl / docker (push) Has been skipped

This commit is contained in:
Michel Roux 2023-06-30 15:07:36 +02:00
parent c12587b7a4
commit f946f6c68a

View File

@ -9,7 +9,7 @@ jobs:
- run: apt-get update
- run: apt-get install -y git nodejs
- uses: actions/checkout@v3
- uses: https://github.com/Gr1N/setup-poetry@v8
- uses: Gr1N/setup-poetry@v8
- run: poetry install
- run: poetry run flake8 .
- run: poetry run mypy .
@ -21,16 +21,16 @@ jobs:
steps:
- run: apk add git nodejs
- uses: actions/checkout@v3
- uses: https://github.com/docker/metadata-action@v4
- uses: 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
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: https://github.com/docker/build-push-action@v4
- uses: docker/build-push-action@v4
with:
push: ${{ gitea.ref == 'refs/heads/master' || startsWith(gitea.ref, 'refs/tags') }}
tags: ${{ steps.meta.outputs.tags }}