Skip to content

fix: don't need APPSETTING prefix for App Service #30

fix: don't need APPSETTING prefix for App Service

fix: don't need APPSETTING prefix for App Service #30

Workflow file for this run

name: ScribeSecurity
on:
push:
branches:
- "main"
jobs:
scribe-report-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: SCM Generate BOM, Upload to Scribe
id: valint_bom_scm
uses: scribe-security/action-bom@master
with:
type: dir
target: "projects/rawkode.academy/website"
scribe-enable: true
scribe-client-id: ${{ secrets.scribeSecurityClientid }}
scribe-client-secret: ${{ secrets.scribeSecurityClientsecret }}
- name: Container Image Generate BOM, Upload to Scribe
id: valint_bom_image
uses: scribe-security/action-bom@master
with:
target: "ghcr.io/rawkodeacademy/klustered:v1"
scribe-enable: true
scribe-client-id: ${{ secrets.scribeSecurityClientid }}
scribe-client-secret: ${{ secrets.scribeSecurityClientsecret }}
- uses: actions/upload-artifact@v2
with:
name: scribe-reports
path: |
${{ steps.valint_bom_scm.outputs.OUTPUT_PATH }}
${{ steps.valint_bom_image.outputs.OUTPUT_PATH }}
- name: Generate SLSA provenance statement
id: valint_slsa_statement
uses: scribe-security/action-bom@master
with:
target: "ghcr.io/rawkodeacademy/klustered:v1"
format: statement-slsa
force: true
- uses: actions/upload-artifact@v2
with:
name: provenance
path: ${{ steps.valint_slsa_statement.outputs.OUTPUT_PATH }}