mirror of
https://github.com/Steffo99/patched-porobot.git
synced 2024-12-23 10:04:21 +00:00
24 lines
453 B
YAML
24 lines
453 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
|
||
|
|
||
|
ghcrio:
|
||
|
uses: Steffo99/.github/.github/workflows/buildrelease-docker.yml@main
|
||
|
needs:
|
||
|
- test
|
||
|
|
||
|
portainer:
|
||
|
uses: Steffo99/.github/.github/workflows/deploy-portainer.yml@main
|
||
|
needs:
|
||
|
- ghcrio
|
||
|
secrets:
|
||
|
PORTAINER_HOOK_URL: ${{ secrets.PORTAINER_HOOK_URL }}
|