File tree 1 file changed +24
-2
lines changed
1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change 38
38
- name : Upload artifact
39
39
uses : actions/upload-artifact@v1
40
40
with :
41
- name : MA2Export2File-x64
41
+ name : MA2Export2File-Win- x64
42
42
path : ./MA2Export2File
43
43
44
44
publish-win-x86 :
60
60
- name : Upload artifact
61
61
uses : actions/upload-artifact@v1
62
62
with :
63
- name : MA2Export2File-x86
63
+ name : MA2Export2File-Win- x86
64
64
path : ./MA2Export2File
65
65
66
66
publish-macOS-x64 :
84
84
with :
85
85
name : MA2Export2File-macOS-x64
86
86
path : ./MA2Export2File
87
+
88
+ publish-linux-x64 :
89
+ name : Publish Linux x64
90
+ needs : checkout
91
+ runs-on : ubuntu-latest
92
+ steps :
93
+ - name : Cache checkout
94
+ uses : actions/cache@v1
95
+ with :
96
+ path : .
97
+ key : ${{ runner.os }}-${{ github.sha }}
98
+ - name : Setup .NET Core
99
+ uses : actions/setup-dotnet@v1
100
+ with :
101
+ dotnet-version : 3.1.201
102
+ - name : Publish Linux-x64
103
+ run : dotnet publish --nologo --configuration Release --runtime linux-x64 --framework netcoreapp3.1 --no-self-contained --output ./MA2Export2File
104
+ - name : Upload artifact
105
+ uses : actions/upload-artifact@v1
106
+ with :
107
+ name : MA2Export2File-Linux-x64
108
+ path : ./MA2Export2File
You can’t perform that action at this time.
0 commit comments