Fix CI
books / flake8 (push) Successful in 40s Details
books / docker (push) Successful in 30s Details
books / pypi (push) Failing after 50s Details

This commit is contained in:
Michel Roux 2023-06-30 13:20:57 +00:00
parent 63046d5a9d
commit d2338ad0d9
1 changed files with 4 additions and 4 deletions

View File

@ -19,16 +19,16 @@ jobs:
steps: steps:
- run: apk add git nodejs - run: apk add git nodejs
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: https://github.com/docker/metadata-action@v4 - uses: docker/metadata-action@v4
id: meta id: meta
with: with:
images: xefir/pynyaata images: xefir/pynyaata
flavor: latest=${{ gitea.ref == 'refs/heads/master' }} flavor: latest=${{ gitea.ref == 'refs/heads/master' }}
- uses: https://github.com/docker/login-action@v2 - uses: docker/login-action@v2
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: https://github.com/docker/build-push-action@v4 - uses: docker/build-push-action@v4
with: with:
push: ${{ gitea.ref == 'refs/heads/master' || startsWith(gitea.ref, 'refs/tags') }} push: ${{ gitea.ref == 'refs/heads/master' || startsWith(gitea.ref, 'refs/tags') }}
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
@ -45,6 +45,6 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: pip install build - run: pip install build
- run: python -m build - run: python -m build
- uses: https://github.com/pypa/gh-action-pypi-publish@release/v1 - uses: pypa/gh-action-pypi-publish@release/v1
with: with:
password: ${{ secrets.PYPI_API_TOKEN }} password: ${{ secrets.PYPI_API_TOKEN }}