Skip to content

Commit 48b9a28

Browse files
committed
Change trigger of deploy pipeline to be triggered when bump workflow is completed
1 parent 94e85ab commit 48b9a28

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- '*'
77

88
jobs:
9-
build_and_push:
9+
bump_version:
1010
runs-on: ubuntu-24.04-arm
1111

1212
steps:

.github/workflows/deploy.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
name: Deploy Docker Image
22

33
on:
4-
push:
5-
tags:
6-
- '*'
4+
workflow_run:
5+
workflows:
6+
- 'Bump version'
7+
types:
8+
- completed
79

810
jobs:
911
build_and_push:

0 commit comments

Comments
 (0)