mirror of
https://github.com/Steffo99/distributed-arcade.git
synced 2024-11-22 08:04:26 +00:00
18 lines
380 B
YAML
18 lines
380 B
YAML
|
name: "Release new version"
|
||
|
|
||
|
on:
|
||
|
# Creation of a new tag starting with v
|
||
|
push:
|
||
|
tags:
|
||
|
- "v*"
|
||
|
|
||
|
jobs:
|
||
|
ghcrio:
|
||
|
uses: Steffo99/.github/.github/workflows/buildrelease-docker.yml@main
|
||
|
|
||
|
portainer:
|
||
|
uses: Steffo99/.github/.github/workflows/deploy-portainer.yml@main
|
||
|
needs:
|
||
|
- ghcrio
|
||
|
secrets:
|
||
|
PORTAINER_HOOK_URL: ${{ secrets.PORTAINER_HOOK_URL }}
|