56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
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:
|
|
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: xefir/pynyaata
|
|
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:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_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 }}
|
|
|
|
pypi:
|
|
runs-on: ubuntu-latest
|
|
container: python
|
|
needs: [lint]
|
|
if: ${{ gitea.ref == 'refs/heads/master' || startsWith(gitea.ref, 'refs/tags') }}
|
|
steps:
|
|
- run: apt-get update
|
|
- run: apt-get install -y git nodejs
|
|
- uses: actions/checkout@v3
|
|
- run: pip install twine
|
|
- run: python setup.py sdist
|
|
- run: twine upload dist/*
|
|
env:
|
|
TWINE_USERNAME: __token__
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|