Skip to content

Commit

Permalink
ci: Revert keep n8n-workflow version in sync with the main version (n…
Browse files Browse the repository at this point in the history
…o-changelog) (#9139)
  • Loading branch information
krynble committed Apr 12, 2024
1 parent 3eb5be5 commit cd04069
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/scripts/bump-versions.mjs
Expand Up @@ -33,10 +33,8 @@ assert.ok(
'No changes found since the last release',
);

// 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;
// Keep the monorepo version up to date with the released version
packageMap['monorepo-root'].version = packageMap['n8n'].version;

for (const packageName in packageMap) {
const { path, version, isDirty } = packageMap[packageName];
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release-push-to-channel.yml
Expand Up @@ -28,7 +28,6 @@ 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
Expand Down

0 comments on commit cd04069

Please sign in to comment.