Skip to content

Fix working path

Fix working path #12

Workflow file for this run

name: login
on:
push:
workflow_dispatch:
permissions:
id-token: write
contents: read
jobs:
build-and-sign:
environment: production
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v5
- name: azure login
uses: azure/login@v2
with:
allow-no-subscriptions: true
client-id: ${{ secrets.KEYVAULT_CLIENT_ID }}
tenant-id: ${{ secrets.KEYVAULT_TENANT_ID }}
enable-AzPSSession: true
- name: az account
uses: azure/cli@v2
with:
azcliversion: latest
inlineScript: |
az account show
- name: azure context
uses: azure/powershell@v2
with:
azPSVersion: latest
inlineScript: |
Get-AzContext