diff --git a/ci/steps/publish-npm.sh b/ci/steps/publish-npm.sh index ea65780d895b20708acb7f6b9deba77658877074..0b3d8bd02c3abf498abe86d6b6a5ad0140306b60 100755 --- a/ci/steps/publish-npm.sh +++ b/ci/steps/publish-npm.sh @@ -20,6 +20,10 @@ main() { download_artifact npm-package ./release-npm-package # https://github.com/actions/upload-artifact/issues/38 tar -xzf release-npm-package/package.tar.gz + + # Ignore symlink when publishing npm package + # See: https://github.com/cdr/code-server/pull/3935 + echo "node_modules.asar" > release/.npmignore yarn publish --non-interactive release }