Compare commits
8 Commits
5b94f48522
...
V0.3.0
| Author | SHA1 | Date | |
|---|---|---|---|
| e9c155b272 | |||
| fe0f1d98ef | |||
| 3a52f5c19f | |||
| 5a6d96ca97 | |||
| 0c52789cf6 | |||
| b50ee1a251 | |||
| 50ae20abd1 | |||
|
|
79e1d52391 |
29
.github/workflows/build-linux.yml
vendored
29
.github/workflows/build-linux.yml
vendored
@@ -19,21 +19,24 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
dotnet-version: '8.0.x'
|
dotnet-version: '8.0.x'
|
||||||
|
|
||||||
|
- name: Restore dependencies
|
||||||
|
run: dotnet restore Clario/Clario.csproj
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: dotnet build Clario/Clario.csproj --configuration Release --no-restore
|
||||||
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
run: |
|
run: dotnet publish Clario/Clario.csproj \
|
||||||
dotnet publish Clario.Desktop/Clario.Desktop.csproj \
|
--configuration Release \
|
||||||
-r linux-x64 \
|
--runtime linux-x64 \
|
||||||
-c Release \
|
--self-contained true \
|
||||||
--self-contained true \
|
--output ./publish/linux \
|
||||||
-p:PublishSingleFile=true \
|
-p:PublishSingleFile=true \
|
||||||
-o ./publish/linux-x64
|
-p:IncludeNativeLibrariesForSelfExtract=true
|
||||||
|
|
||||||
|
|
||||||
- name: Package as tar.gz
|
|
||||||
run: tar -czf Clario-linux-x64.tar.gz -C ./publish/linux-x64 .
|
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: clario-linux-x64
|
name: Clario-linux-x64
|
||||||
path: Clario-linux-x64.tar.gz
|
path: ./publish/linux
|
||||||
|
retention-days: 7
|
||||||
Reference in New Issue
Block a user