Skip to content

Commit f091aa9

Browse files
authored
ci: Fix ci problem (#3)
1 parent d77fba7 commit f091aa9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/create-release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
create_release:
1313
runs-on: windows-latest
1414
steps:
15-
- name: Checkout code
16-
uses: actions/checkout@v3
15+
- uses: actions/checkout@v6
1716
with:
1817
fetch-depth: 0
1918
- name: Setup .NET
@@ -23,7 +22,7 @@ jobs:
2322
- name: Publish
2423
run: dotnet publish --output '${{ env.PUBLISH_PATH }}'
2524
- name: Compress release artifact
26-
run: 7z a AI.NET.zip ${{ env.PUBLISH_PATH }}
25+
run: 7z a VNGod.zip ${{ env.PUBLISH_PATH }}
2726
- name: Create Release using gh CLI
2827
run: |
2928
gh release create ${{ github.ref_name }} --title "Release ${{ github.ref_name }}" --generate-notes

.github/workflows/dotnet-desktop.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
build:
1616
runs-on: windows-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
19+
with:
20+
fetch-depth: 0
1921
- name: Setup .NET
2022
uses: actions/setup-dotnet@v4
2123
with:

0 commit comments

Comments
 (0)