Skip to content

Commit 82b7bca

Browse files
authored
lightbox
1 parent ccd947c commit 82b7bca

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/data-factory/continuous-integration-delivery-automate-github-actions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Follow the tutorial to [create a user-assigned managed identity](../active-direc
3838

3939
Here is an example of a federated identity configuration:
4040

41-
:::image type="content" source="media/continuous-integration-delivery-github-actions/add-federated-credential.png" alt-text="Screenshot of adding Federated Credential in Azure Portal.":::
41+
:::image type="content" source="media/continuous-integration-delivery-github-actions/add-federated-credential.png" lightbox="media/continuous-integration-delivery-github-actions/add-federated-credential.png"alt-text="Screenshot of adding Federated Credential in Azure Portal.":::
4242

4343
2. After creating the credential, navigate to Azure Active Directory Overview page and take a note of the tenant ID. We need this value later.
4444

@@ -52,11 +52,11 @@ Follow the tutorial to [create a user-assigned managed identity](../active-direc
5252
You need to provide your application's Client ID, Tenant ID and Subscription ID to the login action. These values can be stored in GitHub secrets and referenced in your workflow.
5353
1. Open your GitHub repository and go to Settings.
5454

55-
:::image type="content" source="media/continuous-integration-delivery-github-actions/github-settings.png" alt-text="Screenshot of navigating to GitHub Settings.":::
55+
:::image type="content" source="media/continuous-integration-delivery-github-actions/github-settings.png" lightbox="media/continuous-integration-delivery-github-actions/github-settings.png" alt-text="Screenshot of navigating to GitHub Settings.":::
5656

5757
2. Select Security -> Secrets and variables -> Actions.
5858

59-
:::image type="content" source="media/continuous-integration-delivery-github-actions/github-secrets.png" alt-text="Screenshot of navigating to GitHub Secrets.":::
59+
:::image type="content" source="media/continuous-integration-delivery-github-actions/github-secrets.png" lightbox="media/continuous-integration-delivery-github-actions/github-secrets.png" alt-text="Screenshot of navigating to GitHub Secrets.":::
6060

6161
3. Create secrets for AZURE_CLIENT_ID, AZURE_TENANT_ID, and AZURE_SUBSCRIPTION_ID. Use these values from your Azure Active Directory application for your GitHub secrets:
6262

@@ -92,11 +92,11 @@ The workflow is composed of two jobs:
9292

9393
The setup should look like:
9494

95-
:::image type="content" source="media/continuous-integration-delivery-github-actions/saving-package-json-file.png" alt-text="Screenshot of saving the package.json file in GitHub.":::
95+
:::image type="content" source="media/continuous-integration-delivery-github-actions/saving-package-json-file.png" lightbox="media/continuous-integration-delivery-github-actions/saving-package-json-file.png" alt-text="Screenshot of saving the package.json file in GitHub.":::
9696

9797
2. Navigate to the Actions tab -> New workflow
9898

99-
:::image type="content" source="media/continuous-integration-delivery-github-actions/new-workflow.png" alt-text="Screenshot of creating a new workflow in GitHub.":::
99+
:::image type="content" source="media/continuous-integration-delivery-github-actions/new-workflow.png" lightbox="media/continuous-integration-delivery-github-actions/new-workflow.png" alt-text="Screenshot of creating a new workflow in GitHub.":::
100100

101101
3. Paste the workflow YAML.
102102

@@ -188,15 +188,15 @@ Let’s test the setup by making some changes in the development Data Factory in
188188

189189
1. To check it, browse to the repository -> Actions -> and identify your workflow.
190190

191-
:::image type="content" source="media/continuous-integration-delivery-github-actions/monitoring-workflow.png" alt-text="Screenshot showing monitoring a workflow in GitHub.":::
191+
:::image type="content" source="media/continuous-integration-delivery-github-actions/monitoring-workflow.png" lightbox="media/continuous-integration-delivery-github-actions/monitoring-workflow.png" alt-text="Screenshot showing monitoring a workflow in GitHub.":::
192192

193193
2. You can further drill down into each run, see the jobs composing it and their statuses and duration, as well as the Artifact created by the run. In our scenario, this is the ARM template created in the build job.
194194

195-
:::image type="content" source="media/continuous-integration-delivery-github-actions/monitoring-jobs.png" alt-text="Screenshot showing monitoring jobs in GitHub.":::
195+
:::image type="content" source="media/continuous-integration-delivery-github-actions/monitoring-jobs.png" lightbox="media/continuous-integration-delivery-github-actions/monitoring-jobs.png" alt-text="Screenshot showing monitoring jobs in GitHub.":::
196196

197197
3. You can further drill down by navigating to a job and its steps.
198198

199-
:::image type="content" source="media/continuous-integration-delivery-github-actions/monitoring-release-job.png" alt-text="Screenshot showing monitoring the release job in GitHub.":::
199+
:::image type="content" source="media/continuous-integration-delivery-github-actions/monitoring-release-job.png" lightbox="media/continuous-integration-delivery-github-actions/monitoring-release-job.png" alt-text="Screenshot showing monitoring the release job in GitHub.":::
200200

201201
4. You can also navigate to the target Data Factory instance to which you deployed changes to and make sure it reflects the latest changes.
202202

0 commit comments

Comments
 (0)