Skip to content

Releases: Azure/login

Azure Login Action v3.0.1

Choose a tag to compare

@MaddyMicrosoft MaddyMicrosoft released this 04 Aug 02:19

What's Changed

Full Changelog: https://github.com/Azure/login/commits/v3.0.1

Azure Login Action v3

Choose a tag to compare

@YanaXu YanaXu released this 17 Mar 09:03

What's Changed

Full Changelog: v2.3.0...v3

Azure Login Action v2.3.1

Choose a tag to compare

@MaddyMicrosoft MaddyMicrosoft released this 04 Aug 02:41

What's Changed

Full Changelog: v2.3.0...v2.3.1

Azure Login Action v3.0.0

Choose a tag to compare

@YanaXu YanaXu released this 17 Mar 09:01

What's Changed

Full Changelog: v2.3.0...v3.0.0

Azure Login Action v2.3.0

Choose a tag to compare

@MoChilia MoChilia released this 02 Apr 02:15

What's Changed

Full Changelog: v2.2.0...v2.3.0

Azure Login Action v2.2.0

Choose a tag to compare

@YanaXu YanaXu released this 18 Sep 07:42

What's Changed

New Contributors

Full Changelog: v2.1.1...v2.2.0

v2.1.1

Choose a tag to compare

@YanaXu YanaXu released this 24 May 03:53

What's Changed

New Contributors

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

GitHub Action for Azure Login

Choose a tag to compare

@N-Usha N-Usha released this 30 Oct 08:20

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

Choose a tag to compare

@MoChilia MoChilia released this 18 Apr 03:32

What's Changed

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

Azure Login Action v2

Choose a tag to compare

@MoChilia MoChilia released this 04 Mar 07:12

What's Changed

New Contributors

Full Changelog: v1.6.1...v2