This repository has been archived on 2023-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyNyaaTa/.gitea/workflows/pynyaata.yml
Michel Roux ca1b0d691f
Some checks failed
books / flake8 (push) Successful in 31s
books / docker (push) Successful in 1m16s
books / pypi (push) Failing after 7s
Switch to Gitea Actions
2023-06-25 18:26:56 +02:00

45 lines
1.1 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: https://github.com/docker/metadata-action@v4
id: meta
with:
images: xefir/pynyaata
flavor: latest=true
- uses: https://github.com/docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: https://github.com/docker/build-push-action@v4
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
pypi:
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: actions/checkout@v3
- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}