From c47eaa1cfb9cd7675ed6bb74aa6b8a5d36c3cb1e Mon Sep 17 00:00:00 2001 From: Ben Hardill Date: Mon, 16 Feb 2026 09:21:57 +0000 Subject: [PATCH] Poke NR catalouge on release part of https://github.com/FlowFuse/CloudProject/issues/1095 --- .github/workflows/release-publish.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 6671533..69990be 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -20,3 +20,13 @@ jobs: with: token: ${{ secrets.NPM_PUBLISH_TOKEN }} access: public + - name: getVersion + id: getVersion + shell: bash + run: | + VERSION=$(npm info . --json version | sed -e 's/"//g') + echo "version=$VERSION" >> $GITHUB_OUTPUT + - uses: flowfuse/github-actions-workflows/actions/update-nr-flows@v0.49.0 + with: + package: '@flowfuse/node-red-function-gpt' + version: ${{ steps.getVersion.outputs.version }} \ No newline at end of file