Skip to content

Commit 271da7d

Browse files
committed
github: trigger files
1 parent f9c04a7 commit 271da7d

3 files changed

Lines changed: 20 additions & 6 deletions

File tree

.github/workflows/build-deb.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
name: Build and Publish Debian Package
22

33
on:
4-
push:
5-
branches:
6-
- '**'
7-
tags:
8-
- '**'
9-
workflow_dispatch:
4+
workflow_call:
105

116
jobs:
127
create_release:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Trigger On Master
2+
on:
3+
push:
4+
branches:
5+
- master
6+
7+
jobs:
8+
run-shared:
9+
uses: ./.github/workflows/build-deb.yaml
10+

.github/workflows/trigger-tag.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Trigger On Tag
2+
on:
3+
push:
4+
tags:
5+
- '**'
6+
7+
jobs:
8+
run-shared:
9+
uses: ./.github/workflows/build-deb.yaml

0 commit comments

Comments
 (0)