mirror of
https://github.com/Steffo99/emblematic.git
synced 2024-11-22 23:04:18 +00:00
36 lines
727 B
YAML
36 lines
727 B
YAML
|
name: "Release new version"
|
||
|
|
||
|
on:
|
||
|
# Creation of a new tag starting with v
|
||
|
push:
|
||
|
tags:
|
||
|
- "v*"
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
uses: ./.github/workflows/test.yml
|
||
|
|
||
|
build:
|
||
|
uses: Steffo99/.github/.github/workflows/build-poetry.yml@main
|
||
|
|
||
|
github:
|
||
|
uses: Steffo99/.github/.github/workflows/release-poetry-github.yml@main
|
||
|
needs:
|
||
|
- test
|
||
|
- build
|
||
|
|
||
|
pypi:
|
||
|
uses: Steffo99/.github/.github/workflows/release-poetry-pypi.yml@main
|
||
|
needs:
|
||
|
- test
|
||
|
- build
|
||
|
secrets:
|
||
|
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
||
|
|
||
|
portainer:
|
||
|
uses: Steffo99/.github/.github/workflows/deploy-portainer.yml@main
|
||
|
needs:
|
||
|
- ghcrio
|
||
|
secrets:
|
||
|
PORTAINER_HOOK_URL: ${{ secrets.PORTAINER_HOOK_URL }}
|