Skip to content

Commit 3057bd6

Browse files
committed
auto-build workflow updated
1 parent 0405ed8 commit 3057bd6

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

.github/workflows/auto-build.yml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,20 @@ on:
77
jobs:
88
build:
99
runs-on: windows-2022
10+
11+
env:
12+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
13+
1014
steps:
11-
- uses: actions/checkout@v4
12-
- uses: nuget/setup-nuget@v2
13-
- uses: microsoft/setup-msbuild@v1.1
15+
- uses: actions/checkout@v5
16+
17+
- uses: nuget/setup-nuget@v3
18+
19+
- uses: microsoft/setup-msbuild@v2
1420
with:
1521
msbuild-architecture: x64
1622

17-
- uses: dorny/paths-filter@v2
23+
- uses: dorny/paths-filter@v3
1824
id: changes
1925
with:
2026
filters: |
@@ -28,15 +34,13 @@ jobs:
2834
run: msbuild OpenHardwareMonitor.sln -p:Configuration=Release -p:Platform="Any CPU" -m
2935

3036
- name: Publish build
31-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@v5
3238
with:
3339
name: OpenHardwareMonitor
34-
path: |
35-
OpenHardwareMonitor/bin
40+
path: OpenHardwareMonitor/bin
3641

3742
- name: Publish Lib build
38-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
3944
with:
4045
name: OpenHardwareMonitorLib
41-
path: |
42-
OpenHardwareMonitorLib/bin
46+
path: OpenHardwareMonitorLib/bin

0 commit comments

Comments
 (0)