Skip to content

Commit c870fe4

Browse files
committed
ci: add prerelease docker build workflow
1 parent b890282 commit c870fe4

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/az_acr_release.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,21 @@ name: 'ACR: Docker Release Images'
22

33
on:
44
workflow_dispatch:
5-
5+
6+
release:
7+
types: [prereleased]
68
push:
79
branches:
810
- "dev"
911

1012
jobs:
13+
call-gh-validate-release:
14+
if: github.event_name == 'release'
15+
uses: code-kern-ai/cicd-deployment-scripts/.github/workflows/gh_validate_release.yml@dev
16+
secrets: inherit
17+
1118
call-az-acr-release:
19+
needs: [call-gh-validate-release]
20+
if: always() && !failure()
1221
uses: code-kern-ai/cicd-deployment-scripts/.github/workflows/az_acr_release.yml@dev
1322
secrets: inherit

0 commit comments

Comments
 (0)