-
Notifications
You must be signed in to change notification settings - Fork 8
45 lines (44 loc) · 1.42 KB
/
ci.yaml
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
permissions:
contents: read
on:
pull_request:
branches: [main]
jobs:
containers:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: docker build podinfo
run: |
docker image build -t podinfo:latest templates/podinfo-example/content/
- name: docker build node-service
run: |
docker image build -t node-service:latest templates/node-service/content/
- name: docker build backstage
run: |
mkdir credentials && touch credentials/github-app-backstage-humanitec-credentials.yaml
docker image build -t backstage:latest .
validate-score:
runs-on: ubuntu-latest
env:
HUMCTL_VERSION: '*'
steps:
- name: checkout code
uses: actions/checkout@v4
- uses: humanitec/setup-cli-action@v1
with:
version: ${{ env.HUMCTL_VERSION }}
- name: humctl score validate - backstage
run: |
humctl score validate --local --strict \
score.yaml
- name: humctl score validate - node-service
run: |
humctl score validate --local --strict \
templates/node-service/content/score.yaml
- name: humctl score validate - podinfo
run: |
humctl score validate --local --strict \
templates/podinfo-example/content/score.yaml