File tree 2 files changed +1
-21
lines changed
2 files changed +1
-21
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,13 @@ jobs:
16
16
uses : actions/setup-dotnet@v1
17
17
with :
18
18
dotnet-version : ' 6.x'
19
- # - name: Restore .NET dependencies
20
- # run: dotnet restore /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/Parse.csproj
21
- # - name: Build .NET project
22
- # run: dotnet build /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/Parse.csproj -c Release
23
- # - name: List output directory contents
24
- # run: ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin/Release/netstandard2.0
25
19
- name : Set up Node.js
26
20
uses : actions/setup-node@v2
27
21
with :
28
22
node-version : 18
29
23
- name : Install Node dependencies
30
24
run : npm ci
31
- - name : Release
25
+ - name : Build and publish release
32
26
run : npx semantic-release
33
27
env :
34
28
GH_TOKEN : ${{ secrets.RELEASE_GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -90,20 +90,6 @@ async function config() {
90
90
}
91
91
]
92
92
} ] ,
93
- // ["@semantic-release/exec", {
94
- // 'verifyConditionsCmd': 'find / -name "Parse.dll" 2>/dev/null',
95
- // 'prepareCmd': 'find / -name "Parse.dll" 2>/dev/null',
96
- // 'publishCmd': 'find / -name "Parse.dll" 2>/dev/null',
97
- // 'successCmd': 'find / -name "Parse.dll" 2>/dev/null',
98
- // 'failCmd': 'find / -name "Parse.dll" 2>/dev/null',
99
- // }],
100
- // ["@semantic-release/exec", {
101
- // 'verifyConditionsCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin 2>/dev/null',
102
- // 'prepareCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin 2>/dev/null',
103
- // 'publishCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin 2>/dev/null',
104
- // 'successCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin 2>/dev/null',
105
- // 'failCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin 2>/dev/null',
106
- // }],
107
93
// Build the DLL file after the version has been updated
108
94
[ "@semantic-release/exec" , {
109
95
'prepareCmd' : 'dotnet build ./Parse/Parse.csproj -c Release' ,
You can’t perform that action at this time.
0 commit comments