> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: release ## Article: release ## Article Link: https://dev.wix.com/docs/wix-cli/command-reference/project-commands/release.md ## Article Content: # wix release Starts a process that guides you through releasing your project. Releasing pushes your project to Wix's servers and publishes it. Once complete, the CLI displays preview URLs for your project and dashboard, along with the published project URL. For apps specifically, this command releases a new [version](https://dev.wix.com/docs/build-apps/manage-your-app/versioning/about-app-versioning.md) of your app. This also registers extension components in your app's configuration. Some extensions won't work until you've run `release`. Once the app version is released, you can [submit it for review](https://dev.wix.com/docs/build-apps/launch-your-app/app-distribution/submit-your-first-app-version.md) to publish it to the [Wix App Market](https://www.wix.com/app-market). If you choose not to list your app in the Wix App Market, you can distribute your app by [sharing an install link](https://dev.wix.com/docs/build-apps/launch-your-app/app-distribution/share-an-app-install-link.md) or [install it directly](https://dev.wix.com/docs/build-apps/launch-your-app/app-distribution/install-your-app-directly-on-sites.md) on a site within your account. >**Note:** Before releasing the project, run the [build](https://dev.wix.com/docs/wix-cli/command-reference/project-commands/build.md) command. ## Usage ```bash wix release [flags] ``` ## Flags The following flags are available for the `wix release` command: ::::tabs :::Apps | Flag | Alias | Description | | -------------- | --------- | --------------------------------------- | | `--site ` | `-s ` | The site ID to use for application preview URLs. Defaults to the current selected development site. | | `--base-url ` | | Sets the base URL for uploading your static files to an external CDN. If this flag isn't provided, the code for your project is hosted on Wix's servers. | | `--comment ` | `-c ` | The comment for your release version. Not visible to Wix users. | | `--version-type ` | `-t ` | The type of version you would like to create.

Accepted values for ``: `major`, `minor`. | ::: :::Headless The flags aren't applicable. :::