-
Notifications
You must be signed in to change notification settings - Fork 5
38 lines (34 loc) · 1.02 KB
/
environment.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
name: Create environment
on:
push:
paths:
- Dockerfile
- config/*
- .github/workflows/environment.yml
- bin/*
workflow_dispatch:
jobs:
docker-build:
runs-on: ubuntu-22.04
container: philipssoftware/node:lts
steps:
- name: Checkout Continuous Compliance
uses: actions/checkout@v4
- name: Build Docker Images
uses: philips-software/[email protected]
with:
dockerfile: .
image-name: continuous-compliance
tags: latest 0.6.1
push-branches: main develop
sign: true
sbom: true
slsa-provenance: true
env:
REGISTRY_USERNAME: ${{ github.actor }}
REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REGISTRY_URL: ghcr.io/philips-labs
GITHUB_ORGANIZATION: philips-labs
COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }}
COSIGN_PRIVATE_KEY: ${{ secrets.COSIGN_PRIVATE_KEY }}
COSIGN_PUBLIC_KEY: ${{ secrets.COSIGN_PUBLIC_KEY }}