Skip to content

Latest commit

 

History

History
66 lines (47 loc) · 1.49 KB

File metadata and controls

66 lines (47 loc) · 1.49 KB

Quick Publishing Guide

Since you've created the script-lang publisher on the marketplace, here's how to publish immediately:

1. Login to Marketplace

# Login with your marketplace publisher
vsce login script-lang
# Enter your Personal Access Token when prompted

2. Publish to Marketplace

# Publish the current version
vsce publish

That's it! The extension will be live on the marketplace within minutes.

3. Test Installation

Once published, users can install with:

ext install script-lang.script-lang

4. Set Up GitHub Repository (Optional)

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 main

Then add your Personal Access Token as VSCE_PAT secret in GitHub repository settings.

5. Future Updates

For future updates:

  1. Make changes to the extension
  2. Update version: npm version patch
  3. Publish: vsce publish

Or if you set up GitHub Actions:

  1. Make changes
  2. Create a release on GitHub
  3. Automatic publishing!

Current Extension Details

Users will get automatic updates once installed from the marketplace!