Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
Fix new lines
Browse files Browse the repository at this point in the history
  • Loading branch information
pamelafox committed Nov 28, 2023
1 parent 76f333e commit 6492b9a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ on:

# GitHub Actions workflow to deploy to Azure using azd
# To configure required secrets for connecting to Azure, simply run `azd pipeline config`

# Set up permissions for deploying with secretless Azure federated credentials
# https://learn.microsoft.com/en-us/azure/developer/github/connect-from-azure?tabs=azure-portal%2Clinux#set-up-azure-login-with-openid-connect-authentication
permissions:
id-token: write
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -29,10 +29,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install azd
uses: Azure/[email protected]

- name: Log in with Azure (Federated Credentials)
if: ${{ env.AZURE_CLIENT_ID != '' }}
run: |
Expand All @@ -41,28 +41,28 @@ jobs:
--federated-credential-provider "github" `
--tenant-id "$Env:AZURE_TENANT_ID"
shell: pwsh

- name: Log in with Azure (Client Credentials)
if: ${{ env.AZURE_CREDENTIALS != '' }}
run: |
$info = $Env:AZURE_CREDENTIALS | ConvertFrom-Json -AsHashtable;
Write-Host "::add-mask::$($info.clientSecret)"
azd auth login `
--client-id "$($info.clientId)" `
--client-secret "$($info.clientSecret)" `
--tenant-id "$($info.tenantId)"
shell: pwsh
env:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}

- name: Provision Infrastructure
run: azd provision --no-prompt
env:
AZURE_ENV_NAME: ${{ vars.AZURE_ENV_NAME }}
AZURE_LOCATION: ${{ vars.AZURE_LOCATION }}
AZURE_SUBSCRIPTION_ID: ${{ vars.AZURE_SUBSCRIPTION_ID }}

- name: Deploy Application
run: azd deploy --no-prompt
env:
Expand Down Expand Up @@ -104,4 +104,4 @@ jobs:
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.in
python3 -m playwright install --with-deps
python3 -m pytest --exitfirst src/tests/smoke/smoketests.py --live-server-url $URI
python3 -m pytest --exitfirst src/tests/smoke/smoketests.py --live-server-url $URI
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ def pytest_addoption(parser):

@pytest.fixture(scope="function")
def live_server_url(request):
return request.config.getoption("--live-server-url")
return request.config.getoption("--live-server-url")
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
test_destinations,
test_home,
test_request_information,
)
)

0 comments on commit 6492b9a

Please sign in to comment.