Skip to content

Stress Test

Stress Test #33

Workflow file for this run

name: Stress Test
on:
workflow_dispatch:
jobs:
build:
name: attest many subjects
runs-on: ubuntu-latest
permissions:
attestations: write
id-token: write
steps:
- uses: hmarr/debug-action@v2
- name: Build artifacts
run: |
mkdir subdir
for i in {1..250}
do
echo $i > artifact-${i}.bin
date >> artifact-${i}.bin
done
- name: Attest artifact
uses: actions/attest@bdehamer/multi-sub-test
env:
INPUT_PRIVATE-SIGNING: 'true'
with:
subject-path: |
**/artifact-2??.bin
!**/artifact-2[0-3]?.bin
predicate-type: 'text/plain'
predicate: '{}'
show-summary: false