Since you've created the script-lang publisher on the marketplace, here's how to publish immediately:
# Login with your marketplace publisher
vsce login script-lang
# Enter your Personal Access Token when prompted# Publish the current version
vsce publishThat's it! The extension will be live on the marketplace within minutes.
Once published, users can install with:
ext install script-lang.script-lang
For automatic publishing on future releases:
# Create repository
gh repo create moikas-code/vscode-script --public
# Push code
git init
git add .
git commit -m "Initial commit: Script VS Code extension"
git remote add origin https://github.com/moikas-code/vscode-script.git
git push -u origin mainThen add your Personal Access Token as VSCE_PAT secret in GitHub repository settings.
For future updates:
- Make changes to the extension
- Update version:
npm version patch - Publish:
vsce publish
Or if you set up GitHub Actions:
- Make changes
- Create a release on GitHub
- Automatic publishing!
- Publisher: script-lang
- Name: script-lang
- Install Command:
ext install script-lang.script-lang - Homepage: https://github.com/moikas-code/vscode-script
Users will get automatic updates once installed from the marketplace!