Skip to content

Commit e54d0a4

Browse files
committed
push
1 parent a3dfda6 commit e54d0a4

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,18 @@ jobs:
3939
uses: ibiqlik/action-yamllint@v3
4040
with:
4141
file_or_dir: |
42-
deploy/
42+
deploy/helm/aotanami/Chart.yaml
43+
deploy/helm/aotanami/values.yaml
4344
.github/workflows/
44-
config/
4545
config_data: |
4646
extends: default
4747
rules:
4848
line-length:
4949
max: 200
5050
truthy:
5151
check-keys: false
52+
comments-indentation: disable
53+
document-start: disable
5254
5355
test:
5456
name: Test

.github/workflows/release.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,18 @@ jobs:
9595
# --- SLSA Provenance attestation ---
9696
- name: Generate and attach provenance
9797
run: |
98+
cat > /tmp/provenance.json << EOF
99+
{
100+
"buildType": "https://github.com/zelyo-ai/aotanami",
101+
"builder": {"id": "https://github.com/zelyo-ai/aotanami/actions"},
102+
"metadata": {
103+
"buildInvocationId": "${{ github.run_id }}",
104+
"completeness": {"parameters": true, "environment": true, "materials": true}
105+
}
106+
}
107+
EOF
98108
cosign attest --yes \
99-
--predicate <(echo '{"buildType":"https://github.com/zelyo-ai/aotanami","builder":{"id":"https://github.com/zelyo-ai/aotanami/actions"},"metadata":{"buildInvocationId":"${{ github.run_id }}","completeness":{"parameters":true,"environment":true,"materials":true}}}') \
109+
--predicate /tmp/provenance.json \
100110
--type slsaprovenance \
101111
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build-push.outputs.digest }}
102112

0 commit comments

Comments
 (0)