File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535 - name : run direwolf suite
3636 run : ./scripts/direwolf-test-run
3737 env :
38- HEROKU_CLI_VERSION : ${{ inputs.releaseChannel }}
38+ HEROKU_CLI_CHANNEL : ${{ inputs.releaseChannel }}
3939 DIREWOLF_TOKEN : ${{ secrets.DEV_TOOLING_DIREWOLF_TOKEN }}
4040 DIREWOLF_CLOUD_UUID : ${{ secrets.DIREWOLF_CLOUD_UUID_PRODUCTION }}
Original file line number Diff line number Diff line change @@ -4,16 +4,16 @@ set -euo pipefail
44
55DIREWOLF_SUITE=" cli"
66
7- # default CLI version is stable
8- HEROKU_CLI_VERSION =${HEROKU_CLI_VERSION := " stable" }
7+ # default CLI channel is stable
8+ HEROKU_CLI_CHANNEL =${HEROKU_CLI_CHANNEL := " stable" }
99
1010DIREWOLF_URL=" https://$DIREWOLF_TOKEN @direwolf-api.herokai.com"
1111
1212POST_BODY=$( jq --null-input \
1313 --arg cloud " $DIREWOLF_CLOUD_UUID " \
1414 --arg suite " $DIREWOLF_SUITE " \
15- --arg env " $HEROKU_CLI_VERSION " \
16- ' {"cloud": { "id": $cloud }, "suite": { "label": $suite }, "env": { "HEROKU_CLI_VERSION ": $env }}' )
15+ --arg channel " $HEROKU_CLI_CHANNEL " \
16+ ' {"cloud": { "id": $cloud }, "suite": { "label": $suite }, "env": { "HEROKU_CLI_CHANNEL ": $channel }}' )
1717
1818echo " Enqueuing: $POST_BODY "
1919
You can’t perform that action at this time.
0 commit comments