Skip to content

Commit c06ecec

Browse files
committed
add tags based release again
1 parent c8b7e47 commit c06ecec

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/tags.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: tags
2+
on:
3+
push:
4+
tags:
5+
- 'v*'
6+
jobs:
7+
docker:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: build docker image
11+
uses: the-actions-org/workflow-dispatch@3133c5d135c7dbe4be4f9793872b6ef331b53bc7
12+
with:
13+
workflow: docker.yml
14+
token: "${{ secrets.REPOSITORY_TOKEN }}"
15+
inputs: '{ "release":"true" }'
16+
17+
docker-unraid:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: build docker image for unraid community
21+
uses: the-actions-org/workflow-dispatch@3133c5d135c7dbe4be4f9793872b6ef331b53bc7
22+
with:
23+
workflow: docker.yml
24+
token: "${{ secrets.REPOSITORY_TOKEN }}"
25+
inputs: '{ "release":"false", "uid":"99", "gid":"100", "semversuffix":"unraid" }'

0 commit comments

Comments
 (0)