Skip to content

Commit 779d302

Browse files
ci: fix target update
1 parent aee3f9b commit 779d302

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ jobs:
5959
name: Generate docs and publish artifacts
6060
needs: ['build']
6161
steps:
62-
- name: Get cache - net5.0
62+
- name: Get cache - net6.0
6363
uses: actions/cache@v2
6464
with:
65-
path: build/net5.0
66-
key: ${{ runner.os }}-build-net5.0
67-
68-
- name: Get cache - netcoreapp3.1
65+
path: build/net6.0
66+
key: ${{ runner.os }}-build-net6.0
67+
68+
- name: Get cache - net7.0
6969
uses: actions/cache@v2
7070
with:
71-
path: build/netcoreapp3.1
72-
key: ${{ runner.os }}-build-netcoreapp3.1
71+
path: build/net7.0
72+
key: ${{ runner.os }}-build-net7.0
7373

7474
- uses: actions/setup-dotnet@v3
7575
with:
@@ -79,14 +79,14 @@ jobs:
7979
run: dotnet new tool-manifest && dotnet tool install EAVFW.Extensions.Docs.TransformToMarkdown
8080

8181
- name: Generate docs
82-
run: dotnet tool run tomd --input build/net5.0/ExpressionEngine.xml --output Documentation.md
82+
run: dotnet tool run tomd --input build/net7.0/ExpressionEngine.xml --output Documentation.md
8383

8484
- name: Archive build to artifacts
8585
uses: actions/upload-artifact@v2.3.1
8686
with:
8787
name: Build
8888
path: |
89-
build/netcoreapp3.1/
90-
build/net5.0/
89+
build/net6.0/
90+
build/net7.0/
9191
Documentation.md
9292
retention-days: 5

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
if: ${{ env.RELEASE_VERSION }}
8080

8181
- name: Generate docs
82-
run: dotnet tool run tomd --input ExpressionEngine/bin/Release/net5.0/ExpressionEngine.xml --output artifacts/Documentation.md
82+
run: dotnet tool run tomd --input ExpressionEngine/bin/Release/net7.0/ExpressionEngine.xml --output artifacts/Documentation.md
8383
if: ${{ env.RELEASE_VERSION }}
8484

8585
- name: Release to GitHub and NuGet

0 commit comments

Comments
 (0)