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 79bdad9 commit 52dd0d6Copy full SHA for 52dd0d6
.github/workflows/node-build.yml
@@ -345,7 +345,10 @@ jobs:
345
PUSH_DOCKER_IMAGE=true
346
NEW_VERSION="nightly"
347
elif [ "${{ github.event_name == 'workflow_dispatch' }}" = true ]; then
348
- NEW_VERSION="manual"
+ NEW_VERSION="$GITHUB_REF_NAME"
349
+ if [[ "${{ github.ref_name }}" != "main" ]]; then
350
+ PUSH_DOCKER_IMAGE="true"
351
+ fi
352
elif [ "${{ startsWith(github.ref_name, 'release/v')}}" = true ]; then
353
354
SHOULD_PUSH_TAG=true
0 commit comments