Releases: Azure/login
Releases · Azure/login
Azure Login Action v2.2.0
What's Changed
- Replace
az --version
withaz version
by @MoChilia in #450 - Update documentation for setting audience when environment is set by @jcantosz in #455
- Fix #459: Errors when registering cloud profile for AzureStack by @MoChilia in #466
- Fix typo by @KronosTheLate in #483
- move pre cleanup to main and add pre-if and post-if by @YanaXu in #484
New Contributors
- @jcantosz made their first contribution in #455
- @KronosTheLate made their first contribution in #483
Full Changelog: v2.1.1...v2.2.0
v2.1.1
GitHub Action for Azure Login
With the Azure login Action, you can automate your workflow to do an Azure login using Azure service principal and run Az CLI scripts.
Sample workflow that uses Azure login action using OIDC to run az cli
# File: .github/workflows/OIDC_login.yml
on: [push]
name: AzureLoginSample
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: 'Az CLI login'
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- run: |
az webapp list --query "[?state=='Running']"
License
GitHub Action for Azure Web App is licensed under the MIT License
Azure Login Action v2.1.0
What's Changed
Full Changelog: v2.0.0...v2.1.0
Azure Login Action v2
Azure Login Action v1.6.1
- Fix #403: Do not break the workflow if
az
is not installed inpre
andpost
steps
Azure Login Action v1.6.0
- Added
pre:
andpost:
action for cleaning up (#384)
Azure Login Action v1.5.1
Azure Login Action v1.5.0
- Updated the versions of dependencies.
- Supported passwords to start with hyphen(-).
- Enabled OIDC for sovereign clouds.
- Supported Managed Identity Login.
[BUG FIX] Version pattern regex update
[BUG FIX] Version pattern quickfix releases (#245) * Update Constants.js * Update Constants.ts