From 16859a6c6668701e6dc36b029b65fde6c60b2f7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Uhl=C3=AD=C5=99?= Date: Thu, 21 Dec 2023 15:33:21 +0100 Subject: [PATCH] ci: tinkering --- .github/workflows/generate.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index 9716b07..82d1b88 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -1,5 +1,6 @@ name: Generates circuit assets on: + pull_request: workflow_dispatch: inputs: maxDepth: @@ -80,7 +81,7 @@ jobs: - name: Setup CLI arguments run: | - ENTROPY=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 10 | head -n 1) + ENTROPY="asdf" echo "Entropy: $ENTROPY" echo "CLI_ARGS=--maxDepth=${{ github.event.inputs.maxDepth }} --maxSlots=${{ github.event.inputs.maxSlots }} --cellSize=${{ github.event.inputs.cellSize }} --blockSize=${{ github.event.inputs.blockSize }} --nSamples=${{ github.event.inputs.nSamples }} --entropy=$ENTROPY --seed=${{ github.event.inputs.seed }} --nSlots=${{ github.event.inputs.nSlots }} --slotIndex=${{ github.event.inputs.slotIndex }} --nCells=${{ github.event.inputs.nCells }}" >> $GITHUB_ENV