Skip to content

Commit 3f5abc5

Browse files
author
¨tedecti¨
committed
...
1 parent 92f1163 commit 3f5abc5

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ on:
77
branches: [ master ]
88

99
jobs:
10-
deploy:
11-
runs-on: self-hosted
1210
build:
1311
runs-on: ubuntu-latest
1412
env:
@@ -24,10 +22,16 @@ jobs:
2422
dotnet-version: '8.0.x'
2523

2624
- name: Restore dependencies
27-
run: dotnet restore
25+
run: dotnet restore ./Eclipse/Eclipse.csproj
2826

2927
- name: Build
30-
run: dotnet build --configuration $BUILD_CONFIGURATION --no-restore
28+
run: dotnet build ./Eclipse/Eclipse.csproj --configuration $BUILD_CONFIGURATION --no-restore
3129

3230
- name: Publish
3331
run: dotnet publish ./Eclipse/Eclipse.csproj -c $BUILD_CONFIGURATION -o ./publish /p:UseAppHost=false
32+
33+
- name: Upload Artifact
34+
uses: actions/upload-artifact@v4
35+
with:
36+
name: eclipse-app
37+
path: ./publish

0 commit comments

Comments
 (0)