forked from jaegertracing/jaeger-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (41 loc) · 1004 Bytes
/
digma-push.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
41
42
43
44
45
name: Lint & test & build
on:
push:
branches:
- 'digma'
# Github Actions don't support YAML anchors yet, so we have to repeat
# the paths-ignore in both push and pull_request events.
# More info: https://github.com/actions/runner/issues/1182
paths-ignore:
- '.vscode/**'
- '.prettierignore'
- '.prettierrc'
- '*.md'
- 'DCO'
- 'LICENSE'
pull_request:
branches:
- 'digma'
paths-ignore:
- '.vscode/**'
- '.prettierignore'
- '.prettierrc'
- '*.md'
- 'DCO'
- 'LICENSE'
jobs:
lint-test:
name: Lint & test
uses: ./.github/workflows/digma-lint-test.yml
build:
name: Build
needs: lint-test
uses: ./.github/workflows/digma-build.yml
build-docker-image:
name: Build Docker image
needs: build
uses: ./.github/workflows/digma-docker-image.yml
secrets: inherit
with:
dist-artifact-name: ${{ needs.build.outputs.artifact-name }}
push: false