From 441c4e9878577ddce42dd3e4aa9d55215a82796c Mon Sep 17 00:00:00 2001 From: yau-wd Date: Thu, 23 Jul 2026 11:51:05 +0800 Subject: [PATCH] Fix Flowise 544 GitHub Workflow (#6649) fix(flowise-544): github workflow --- .github/workflows/docker-image-dockerhub.yml | 7 +++++-- .github/workflows/docker-image-ecr.yml | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-image-dockerhub.yml b/.github/workflows/docker-image-dockerhub.yml index 960c24bb279..03ef4e414d3 100644 --- a/.github/workflows/docker-image-dockerhub.yml +++ b/.github/workflows/docker-image-dockerhub.yml @@ -29,9 +29,12 @@ jobs: steps: - name: Set default values id: defaults + env: + NODE_VERSION_INPUT: ${{ github.event.inputs.node_version || '24' }} + TAG_VERSION_INPUT: ${{ github.event.inputs.tag_version || 'latest' }} run: | - echo "node_version=${{ github.event.inputs.node_version || '24' }}" >> $GITHUB_OUTPUT - echo "tag_version=${{ github.event.inputs.tag_version || 'latest' }}" >> $GITHUB_OUTPUT + echo "node_version=${NODE_VERSION_INPUT}" >> $GITHUB_OUTPUT + echo "tag_version=${TAG_VERSION_INPUT}" >> $GITHUB_OUTPUT build: needs: prepare diff --git a/.github/workflows/docker-image-ecr.yml b/.github/workflows/docker-image-ecr.yml index 47275f08687..63f9740b9d7 100644 --- a/.github/workflows/docker-image-ecr.yml +++ b/.github/workflows/docker-image-ecr.yml @@ -35,9 +35,12 @@ jobs: steps: - name: Set default values id: defaults + env: + NODE_VERSION_INPUT: ${{ github.event.inputs.node_version || '24' }} + TAG_VERSION_INPUT: ${{ github.event.inputs.tag_version || 'latest' }} run: | - echo "node_version=${{ github.event.inputs.node_version || '24' }}" >> $GITHUB_OUTPUT - echo "tag_version=${{ github.event.inputs.tag_version || 'latest' }}" >> $GITHUB_OUTPUT + echo "node_version=${NODE_VERSION_INPUT}" >> $GITHUB_OUTPUT + echo "tag_version=${TAG_VERSION_INPUT}" >> $GITHUB_OUTPUT - name: Checkout uses: actions/checkout@v6.0.2