Skip to content

Commit

Permalink
chore: spread load on publish-aztec-packages (#10674)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludamad authored Dec 12, 2024
1 parent d6be2c8 commit b0b354e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish-aztec-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ jobs:
GIT_HASH="${{ github.sha }}"
GIT_HASH_LAST8=${GIT_HASH: -8}
GIT_HASH_LAST8_DEC=$(printf "%d" 0x$GIT_HASH_LAST8)
GIT_HASH_MODULO_8=$((GIT_HASH_LAST8_DEC % 8))
# offset by 1 in comparison to ci.yml
GIT_HASH_MODULO_8=$(( (GIT_HASH_LAST8_DEC + 1) % 8))
echo "username=master-${GIT_HASH_MODULO_8}"
echo "username=master-${GIT_HASH_MODULO_8}" >> $GITHUB_OUTPUT
fi
Expand Down

0 comments on commit b0b354e

Please sign in to comment.