Sourced from azure/cli's releases.
GitHub Action for Azure CLI v3
What's Changed
- Updated to use node24 by
@thomas-tembyin Azure/cli#197Full Changelog: https://github.com/Azure/cli/compare/v2.2.0...v3
GitHub Action for Azure CLI v3.0.0
What's Changed
- Updated to use node24 by
@thomas-tembyin Azure/cli#197Full Changelog: https://github.com/Azure/cli/compare/v2.2.0...v3.0.0
GitHub Action for Azure CLI v2.2.0
What's Changed
- Mount
AZURE_CONFIG_DIRfolder instead of~/.azureby@MoChiliain Azure/cli#176- FIX: Broken links by appended dot azcliversion errors by
@nselprivin Azure/cli#178New Contributors
@nselprivmade their first contribution in Azure/cli#178Full Changelog: https://github.com/Azure/cli/compare/v2.1.0...v2.2.0
GitHub Action for Azure CLI v2.1.0
What's Changed
- docs: add yaml syntax highlighting to workflow examples by
@baysideengineerin Azure/cli#141- Fix #153: Prevent stdout cutoff in Azure CLI versions by
@MoChiliain Azure/cli#154New Contributors
@baysideengineermade their first contribution in Azure/cli#141@isra-felmade their first contribution in Azure/cli#151Full Changelog: https://github.com/Azure/cli/compare/v2.0.0...v2.1.0
Sourced from azure/cli's changelog.
Releasing a new version
Semanting versioning is used to release different versions of the action. Following steps are to be followed :
- Create a new branch for every major version.
Example, releases/v1, releases/v2.- For every minor and patch release for a major version, update the corresponding release branch.
Example, for releasing v1.1.1, update releases/v1.- Create tags for every new release (major/minor/patch).
Example,v1.0.0. , v1.0.1, v2.0.1, etc. and also have tags like v1, v2 for every major version release.- On releasing minor and patch versions, update the tag of the corresponding major version.
Example, for releasing v1.0.1, update the v1 tag to point to the ref of the current release.
The following commands are to be run on the release\v1 branch so that it picks the latest commit and updates the v1 tag accordingly : (Ensure that you are on same commit locally as you want to release)
git tag -fa v1 -m "Update v1 tag"git push origin v1 --force