File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
runs-on : windows-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v3
14
14
- name : Setup msbuild
15
- uses : microsoft/setup-msbuild@v1.0.2
15
+ uses : microsoft/setup-msbuild@v1.1.3
16
16
- name : Install dependencies
17
17
run : msbuild -t:restore
18
18
- name : Build project
@@ -24,15 +24,15 @@ jobs:
24
24
cp "LICENSE" "ModAssistant/bin/Release/LICENSE.ModAssistant.txt"
25
25
- name : Upload Build
26
26
if : startsWith(github.ref, 'refs/tags/') == false
27
- uses : actions/upload-artifact@v2
27
+ uses : actions/upload-artifact@v3
28
28
with :
29
29
name : ModAssistant-${{ github.sha }}
30
30
path : ./ModAssistant/bin/Release/
31
31
- name : Extract Release Version
32
32
if : startsWith(github.ref, 'refs/tags/')
33
33
id : get_version
34
34
shell : bash
35
- run : echo ::set-output name= version:: ${GITHUB_REF#refs/tags/v}
35
+ run : echo " version= ${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
36
36
- name : Release
37
37
if : startsWith(github.ref, 'refs/tags/')
38
38
uses : softprops/action-gh-release@v1
You can’t perform that action at this time.
0 commit comments