Skip to content

Commit c819ae3

Browse files
committed
Merge branch 'main' into release-waf-modules-refresh
2 parents 42b9d4b + b118b01 commit c819ae3

File tree

5 files changed

+47
-7
lines changed

5 files changed

+47
-7
lines changed

learn-pr/aspnetcore/interact-with-data-blazor-web-apps/includes/3-exercise-create-user-interfaces-with-blazor-components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ If you haven't created a Blazor app before, follow the [setup instructions for B
1515
1. Run the dotnet terminal command:
1616

1717
```dotnetcli
18-
dotnet new blazorserver -o BlazingPizza --no-https true
18+
dotnet new blazor -o BlazingPizza
1919
```
2020
21-
This command creates a new Blazor server project in a folder named **BlazingPizza**. It also tells the project to disable HTTPS.
21+
This command creates a new Blazor server project in a folder named **BlazingPizza**.
2222
1. Select **File** > **Open folder**.
2323
1. In the Open dialog, go to the **BlazingPizza** folder and choose **Select Folder**.
2424

learn-pr/azure/build-and-store-container-images/includes/4-deploy-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Azure Container Registry doesn't support unauthenticated access and requires aut
3131
1. Deploy a container instance using the `az container create` command. Make sure you replace `<admin-username>` and `<admin-password>` with your admin username and password from the previous command.
3232
3333
```azurecli-interactive
34-
az container create --resource-group learn-acr-rg --name acr-tasks --image $ACR_NAME.azurecr.io/helloacrtasks:v1 --registry-login-server $ACR_NAME.azurecr.io --ip-address Public --location eastus --registry-username <admin-username> --registry-password <admin-password>
34+
az container create --resource-group learn-acr-rg --name acr-tasks --image $ACR_NAME.azurecr.io/helloacrtasks:v1 --registry-login-server $ACR_NAME.azurecr.io --ip-address Public --location eastus --registry-username <admin-username> --registry-password <admin-password> --os-type Linux --cpu 1 --memory 1
3535
```
3636
3737
2. Get the IP address of the Azure container instance using the `az container show` command.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
### YamlMime:LearningPath
2+
uid: learn.github-actions-2
3+
metadata:
4+
title: Automate your workflow with GitHub Actions Part 2 of 2
5+
description: This is part two of a GitHub Action Learning Path. Learn how GitHub Actions enables you to automate your software development cycle.
6+
brand: github
7+
ms.date: 05/14/2025
8+
author: camihmerhar
9+
ms.author: camhernandez
10+
ms.topic: learning-path
11+
title: Automate your workflow with GitHub Actions Part 2 of 2
12+
summary: |
13+
Learn how GitHub Actions enables you to automate your software development cycle. This is part two of a GitHub Action Learning Path.
14+
15+
In this learning path, you'll:
16+
17+
- Plan automation of your software development life cycle with GitHub Actions workflows.
18+
- Use GitHub Actions to automatically build your application.
19+
- Use GitHub Script to interact with the GitHub API.
20+
- Publish automatically and securely your code libraries or Docker images with GitHub Packages.
21+
prerequisites: |
22+
- A [GitHub](https://github.com?azure-portal=true) account
23+
iconUrl: /training/achievements/github/8-learn-continuous-integration-with-github-actions.svg
24+
25+
levels:
26+
- beginner
27+
- intermediate
28+
roles:
29+
- devops-engineer
30+
- administrator
31+
- developer
32+
- solution-architect
33+
- student
34+
products:
35+
- github
36+
subjects:
37+
- devops
38+
modules:
39+
- learn.github.github-actions-packages
40+
- learn.github.create-custom-github-actions
41+
- learn.github.manage-github-actions-enterprise
42+
trophy:
43+
uid: learn.github-actions-2.trophy

learn-pr/paths/github-actions/index.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,5 @@ modules:
3939
- learn.github.github-actions-ci
4040
- learn.github.github-actions-cd
4141
- learn.github.automate-github-using-github-script
42-
- learn.github.github-actions-packages
43-
- learn.github.create-custom-github-actions
44-
- learn.github.manage-github-actions-enterprise
4542
trophy:
4643
uid: learn.github-actions.trophy

learn-pr/wwl-data-ai/get-started-data-analytics/includes/4-visualize-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ Other visualizations, such as a map, help to show data patterns that would other
1414

1515
In this video, you'll see how data can be represented using different types of visualizations, and how easy it makes reading the patterns within a dataset:
1616

17-
> [!VIDEO https://www.microsoft.com/videoplayer/embed/RE4Ubep]
17+
> [!VIDEO 20f02e48-0af5-40b0-8b9d-ce1a26663261]

0 commit comments

Comments
 (0)