1
Fork 0
mirror of https://github.com/Steffo99/emblematic.git synced 2024-11-22 14:54:18 +00:00
emblematic/.github/workflows/release.yml

29 lines
525 B
YAML
Raw Normal View History

2023-03-07 22:54:05 +00:00
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
permissions:
id-token: write
2023-03-07 22:54:05 +00:00
needs:
- test
- build