-
Notifications
You must be signed in to change notification settings - Fork 0
Deployment
This page will guide you through the steps to deploy the vscode-aqora extension. Please follow the instructions carefully to ensure a smooth deployment process.
To publish the extension, you need to follow the official guide provided by Visual Studio Code. Please refer to the detailed steps outlined here: Publishing Extensions.
Before proceeding, ensure that you have:
- A Microsoft Azure account
- An API key from Azure for authentication purposes
Once you've set up the prerequisites, you can begin deploying your extension by following these steps:
-
Commit your changes
Make sure all changes are committed in your local repository. -
Generate the changelog
Run the following command to generate a changelog usingcog
:cog changelog
-
Package your extension
Use thevsce
tool to package your extension:vsce package
-
Push your changes
Push your committed changes to the remote repository:git push
-
Push the tag
After pushing the changes, also push the tag to trigger the publishing action:git push --tags
By pushing the tags, you will trigger an automated action that publishes a release in the repository's Releases page. This will make the latest version of your extension available for download and installation.