Skip to content

Commit 5277e2a

Browse files
committed
ci: add fake deploy workflow
1 parent 181294e commit 5277e2a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Deploy
2+
3+
on:
4+
workflow_run:
5+
workflows: [".NET Test", "Docker build"]
6+
types: [completed]
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-24.04
11+
if: github.event.workflow_run.conclusion == 'success'
12+
environment: fake
13+
14+
concurrency:
15+
group: "${{ github.workflow }}-${{ github.ref }}"
16+
cancel-in-progress: true
17+
18+
steps:
19+
- name: Fake deploy
20+
run: echo "Fake deploy"

0 commit comments

Comments
 (0)