Skip to content

Commit f1a9397

Browse files
Another test
1 parent ba1f90f commit f1a9397

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,17 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4.2.2
1717

18-
- name: dotnet
18+
- name: setup dotnet
19+
id: dotnet
1920
uses: actions/setup-dotnet@v4.3.1
2021
with:
2122
dotnet-version: 8.0.x
2223

24+
# Note: Unless a concrete version is specified in the `global.json` file,
25+
# the latest .NET version installed on the runner (including preinstalled
26+
# versions) will be used by default. To control this behavior, you may want
27+
# to use temporary `global.json` files.
28+
# https://github.com/actions/setup-dotnet/blob/main/README.md#matrix-testing
2329
- name: Create `global.json`
2430
run: |
2531
echo '{"sdk":{"version": "${{ steps.dotnet.outputs.dotnet-version }}"}}' > ./global.json

0 commit comments

Comments
 (0)