Skip to content

Deployment

Angel Dijoux edited this page Oct 16, 2024 · 1 revision

Welcome to the vscode-aqora Wiki!

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.

Deployment Steps

1. Publish Your Extension

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.

2. Prerequisites

Before proceeding, ensure that you have:

  • A Microsoft Azure account
  • An API key from Azure for authentication purposes

3. Deployment Process

Once you've set up the prerequisites, you can begin deploying your extension by following these steps:

  1. Commit your changes
    Make sure all changes are committed in your local repository.

  2. Generate the changelog
    Run the following command to generate a changelog using cog:

    cog changelog
  3. Package your extension
    Use the vsce tool to package your extension:

    vsce package
  4. Push your changes
    Push your committed changes to the remote repository:

    git push
  5. Push the tag
    After pushing the changes, also push the tag to trigger the publishing action:

    git push --tags

4. Automate the Release Process

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.