Merge pull request #3954 from cdr/jsjoeio-add-npmignore

fix: add symlink to npmignore
This commit is contained in:
Joe Previte 2021-08-11 14:08:10 -07:00 committed by GitHub
commit 30dc47df9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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
}