We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49b1ce1 commit ba1f90fCopy full SHA for ba1f90f
.github/workflows/deploy.yml
@@ -15,11 +15,15 @@ jobs:
15
steps:
16
- uses: actions/checkout@v4.2.2
17
18
- - name: setup dotnet
+ - name: dotnet
19
uses: actions/setup-dotnet@v4.3.1
20
with:
21
dotnet-version: 8.0.x
22
23
+ - name: Create `global.json`
24
+ run: |
25
+ echo '{"sdk":{"version": "${{ steps.dotnet.outputs.dotnet-version }}"}}' > ./global.json
26
+
27
- name: test
28
timeout-minutes: 10
29
run: |
0 commit comments