Skip to content

Commit

Permalink
Why is the bash working in bash but not in gha?
Browse files Browse the repository at this point in the history
  • Loading branch information
grantnelson-wf committed Jul 10, 2024
1 parent 27e03a9 commit 396bfcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ jobs:
echo "Packages to run:" ${PACKAGE_NAMES[@]}
PART_NUMBER=${{ matrix.part }}
STRIDE=$((${#PACKAGE_NAMES[@]} / $NUMBER_OF_PARTS))
OFFSET=STRIDE*$(($PART_NUMBER - 1))
STRIDE=$((${#PACKAGE_NAMES[@]} / NUMBER_OF_PARTS))
OFFSET=$((STRIDE * (PART_NUMBER - 1)))
echo "Stride:" $STRIDE
echo "Offset:" $OFFSET
Expand Down

0 comments on commit 396bfcb

Please sign in to comment.