From ddd0da5c3fe3e250283b536f4058dbd297abd0d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Uhl=C3=AD=C5=99?= Date: Wed, 3 Jan 2024 13:02:39 +0100 Subject: [PATCH] ci: fix entropy to be int --- .github/workflows/generate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index d8109e9..c47d6e6 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -80,7 +80,7 @@ jobs: - name: Setup CLI arguments run: | - ENTROPY="${{ github.run_id }}-${{ github.run_attempt }}" + ENTROPY="${{ github.run_id }}" echo "Entropy: $ENTROPY" echo "CLI_ARGS=--depth=${{ 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