Switch to gitea actions
divent / lint (push) Successful in 2m0s Details
divent / docker (push) Successful in 1m55s Details
divent / pypi (push) Has been skipped Details

This commit is contained in:
Michel Roux 2023-06-25 17:45:47 +02:00
parent c4188b4c42
commit f1c0613045
2 changed files with 52 additions and 36 deletions

View File

@ -1,36 +0,0 @@
kind: pipeline
name: default
type: docker
steps:
- name: lint
image: python:3.8
commands:
- pip install poetry
- poetry config installer.modern-installation false
- poetry install
- poetry run flake8 .
- poetry run mypy .
- poetry run djlint .
- name: docker
image: plugins/docker
settings:
repo: xefir/divent
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password
- name: publish
image: python:3.8
commands:
- pip install poetry
- poetry config installer.modern-installation false
- poetry publish --build
environment:
POETRY_PYPI_TOKEN_PYPI:
from_secret: pypi_token
when:
event: tag

View File

@ -0,0 +1,52 @@
name: divent
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
container: python:3.8
steps:
- run: apt-get update
- run: apt-get install -y git nodejs
- uses: actions/checkout@v3
- uses: https://github.com/Gr1N/setup-poetry@v8
- run: poetry install
- run: poetry run flake8 .
- run: poetry run mypy .
- run: poetry run djlint .
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/divent
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
container: python:3.8
needs: [lint]
if: startsWith(gitea.ref, 'refs/tags')
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }}
steps:
- run: apt-get update
- run: apt-get install -y git nodejs
- uses: actions/checkout@v3
- uses: https://github.com/Gr1N/setup-poetry@v8
- run: poetry publish --build