Switch to gitea actions
This commit is contained in:
parent
c4188b4c42
commit
f1c0613045
36
.drone.yml
36
.drone.yml
@ -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
|
52
.gitea/workflows/divent.yml
Normal file
52
.gitea/workflows/divent.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user