Skip to content

Releases: Azure/login

v2.1.1

24 May 03:53
Compare
Choose a tag to compare

What's Changed

  • Disable information output in Connect-AzAccount by @YanaXu in #448

New Contributors

Full Changelog: v2.1.0...v2.1.1

GitHub Action for Azure Login

30 Oct 08:20
Compare
Choose a tag to compare

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

18 Apr 03:32
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.1.0

Azure Login Action v2

04 Mar 07:12
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.6.1...v2

Azure Login Action v1.6.1

23 Jan 02:20
Compare
Choose a tag to compare
  • Fix #403: Do not break the workflow if az is not installed in pre and post steps

Azure Login Action v1.6.0

16 Jan 08:00
Compare
Choose a tag to compare
  • Added pre: and post: action for cleaning up (#384)

Azure Login Action v1.5.1

05 Dec 06:08
Compare
Choose a tag to compare
  • Fixed #371: Allow optional subscriptionId in creds (#373)
  • Cleaned accounts before login (#376, #377)
  • Updated actions-secret-parser from 1.0.2 to 1.0.4 (#378)

Azure Login Action v1.5.0

20 Nov 06:28
Compare
Choose a tag to compare
  • 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

09 Sep 11:19
92a5484
Compare
Choose a tag to compare
[BUG FIX] Version pattern quickfix releases (#245)

* Update Constants.js

* Update Constants.ts

Handling id-token error and Node version upgradation

21 Jun 11:17
24848bc
Compare
Choose a tag to compare

In this release, a separate error will be thrown if id-token permissions are not set in the workflow for OIDC login. Also upgraded the Node version to 16.