We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6be2c8 commit b0b354eCopy full SHA for b0b354e
.github/workflows/publish-aztec-packages.yml
@@ -54,7 +54,8 @@ jobs:
54
GIT_HASH="${{ github.sha }}"
55
GIT_HASH_LAST8=${GIT_HASH: -8}
56
GIT_HASH_LAST8_DEC=$(printf "%d" 0x$GIT_HASH_LAST8)
57
- GIT_HASH_MODULO_8=$((GIT_HASH_LAST8_DEC % 8))
+ # offset by 1 in comparison to ci.yml
58
+ GIT_HASH_MODULO_8=$(( (GIT_HASH_LAST8_DEC + 1) % 8))
59
echo "username=master-${GIT_HASH_MODULO_8}"
60
echo "username=master-${GIT_HASH_MODULO_8}" >> $GITHUB_OUTPUT
61
fi
0 commit comments