name: books
on: [push]
jobs:
flake8:
runs-on: ubuntu-latest
container: python
steps:
- run: apt-get update
- run: apt-get install -y git nodejs
- uses: actions/checkout@v3
- run: pip install flake8
- run: flake8 pynyaata
docker:
container: docker
needs: [lint]
- run: apk add git nodejs
- uses: https://github.com/docker/metadata-action@v4
id: meta
with:
images: xefir/pynyaata
flavor: latest=true
- uses: https://github.com/docker/login-action@v2
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: https://github.com/docker/build-push-action@v4
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
pypi:
- uses: https://github.com/pypa/gh-action-pypi-publish@release/v1
password: ${{ secrets.PYPI_API_TOKEN }}