diff --git a/.github/scripts/bump-versions.mjs b/.github/scripts/bump-versions.mjs index 8e7acc21eb..e98042b015 100644 --- a/.github/scripts/bump-versions.mjs +++ b/.github/scripts/bump-versions.mjs @@ -33,8 +33,10 @@ assert.ok( 'No changes found since the last release', ); -// Keep the monorepo version up to date with the released version -packageMap['monorepo-root'].version = packageMap['n8n'].version; +// Keep the monorepo and n8n-workflow version up to date with the released version +const { version } = packageMap['n8n']; +packageMap['monorepo-root'].version = version; +packageMap['n8n-workflow'].version = version; for (const packageName in packageMap) { const { path, version, isDirty } = packageMap[packageName]; diff --git a/.github/workflows/release-push-to-channel.yml b/.github/workflows/release-push-to-channel.yml index aca481cfb4..cfbe5ed1b8 100644 --- a/.github/workflows/release-push-to-channel.yml +++ b/.github/workflows/release-push-to-channel.yml @@ -28,6 +28,7 @@ jobs: - run: | echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc npm dist-tag add n8n@${{ github.event.inputs.version }} ${{ github.event.inputs.release-channel }} + npm dist-tag add n8n-workflow@${{ github.event.inputs.version }} ${{ github.event.inputs.release-channel }} release-to-docker-hub: name: Release to DockerHub