-
Notifications
You must be signed in to change notification settings - Fork 70
Creating a Release
allancascante edited this page Jul 23, 2026
·
1 revision
This page describes how to publish a new released version of sql-action by creating a Git tag through the GitHub web UI.
Releases are created directly from GitHub's Releases page. Publishing a release also creates the underlying Git tag that consumers reference in their workflows (for example, uses: azure/sql-action@v2.3).
- You have write (or maintainer) access to the Azure/sql-action repository.
- The
masterbranch contains the changes you want to release, including the rebuiltlib/main.jsbundle.
Tags follow the vMAJOR.MINOR format (for example, v2.3). Increment the:
- MAJOR version for breaking changes.
- MINOR version for new, backward-compatible features and fixes.
- Go to the Releases page.
- Click Draft a new release.
- Click Choose a tag, type the new version tag (for example,
v2.3), and select Create new tag:v2.3on publish. - Leave Target set to
master. - In the Release title field, enter a title based on the main feature of the release.
- Click Generate release notes to auto-populate the description from merged pull requests.
- Leave the release label set to Set as the latest release.
- Click Publish release.
Once published, GitHub creates the tag and the release becomes available for workflows to reference.