We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92f1163 commit 3f5abc5Copy full SHA for 3f5abc5
1 file changed
.github/workflows/ci.yml
@@ -7,8 +7,6 @@ on:
7
branches: [ master ]
8
9
jobs:
10
- deploy:
11
- runs-on: self-hosted
12
build:
13
runs-on: ubuntu-latest
14
env:
@@ -24,10 +22,16 @@ jobs:
24
22
dotnet-version: '8.0.x'
25
23
26
- name: Restore dependencies
27
- run: dotnet restore
+ run: dotnet restore ./Eclipse/Eclipse.csproj
28
29
- name: Build
30
- run: dotnet build --configuration $BUILD_CONFIGURATION --no-restore
+ run: dotnet build ./Eclipse/Eclipse.csproj --configuration $BUILD_CONFIGURATION --no-restore
31
32
- name: Publish
33
run: dotnet publish ./Eclipse/Eclipse.csproj -c $BUILD_CONFIGURATION -o ./publish /p:UseAppHost=false
+
+ - name: Upload Artifact
34
+ uses: actions/upload-artifact@v4
35
+ with:
36
+ name: eclipse-app
37
+ path: ./publish
0 commit comments