-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (39 loc) · 950 Bytes
/
Copy pathci.yaml
File metadata and controls
45 lines (39 loc) · 950 Bytes
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: CI
on:
push:
branches: [main, develop]
paths-ignore:
- '**/*.md'
- 'LICENSE'
- 'CHANGELOG*'
- '.github/*.md'
pull_request:
branches: [main, develop]
paths-ignore:
- '**/*.md'
- 'LICENSE'
- 'CHANGELOG*'
- '.github/*.md'
jobs:
unicode:
uses: ./.github/workflows/_unicode-lint.yaml
shellcheck:
uses: ./.github/workflows/_shellcheck.yaml
go:
uses: ./.github/workflows/_go.yaml
helm:
uses: ./.github/workflows/_helm.yaml
crashloop-operator:
needs: go
uses: ./.github/workflows/_container-build.yaml
permissions:
contents: read
packages: write
id-token: write
attestations: write
with:
image_name: crashloop-operator
dockerfile: images/crashloop-operator/Containerfile
context: '.'
push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}
image_tag: develop