File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change 8
8
outputs :
9
9
current_tag : ${{ steps.tag.outputs.current_tag }}
10
10
steps :
11
- - uses : actions/checkout@v2
11
+ - name : Checkout
12
+ uses : actions/checkout@v2
12
13
with :
13
14
persist-credentials : false
14
- - uses : actions/setup-node@v2
15
+ - name : Set up .NET
16
+ uses : actions/setup-dotnet@v1
17
+ with :
18
+ dotnet-version : ' 5.0.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
+ - name : Set up Node.js
26
+ uses : actions/setup-node@v2
15
27
with :
16
28
node-version : 18
17
- - run : npm ci
18
- - run : npx semantic-release
29
+ - name : Install Node dependencies
30
+ run : npm ci
31
+ - name : Release
32
+ run : npx semantic-release
19
33
env :
20
34
GH_TOKEN : ${{ secrets.RELEASE_GITHUB_TOKEN }}
21
35
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments