-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (31 loc) · 915 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: CI/CD main
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
concurrency: tagging
jobs:
lint:
uses: fraunhofer-iem/dodo-github-visualization/.github/workflows/lint.yml@main
compile:
uses: fraunhofer-iem/dodo-github-visualization/.github/workflows/compile.yml@main
needs: lint
tag:
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch'}}
needs: compile
uses: fraunhofer-iem/dodo-github-visualization/.github/workflows/tag.yml@main
release:
needs: tag
uses: fraunhofer-iem/dodo-github-visualization/.github/workflows/release.yml@main
with:
tag: ${{ needs.tag.outputs.new_tag }}
prerelease: false
deploy:
needs: tag
uses: fraunhofer-iem/dodo-github-visualization/.github/workflows/updateDeploy.yml@main
with:
tag: ${{ needs.tag.outputs.new_tag }}