Compare commits
9 Commits
V0.3.0
...
29fb04e783
| Author | SHA1 | Date | |
|---|---|---|---|
| 29fb04e783 | |||
| acfdf89ade | |||
| 56d8653a02 | |||
| a563554597 | |||
| 81fc3c9c34 | |||
| e5c15e9b83 | |||
| 76979b2cb0 | |||
| a6c8f3b3ed | |||
|
|
1548339205 |
29
.github/workflows/build-linux.yml
vendored
29
.github/workflows/build-linux.yml
vendored
@@ -19,24 +19,21 @@ 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: dotnet publish Clario/Clario.csproj \
|
run: |
|
||||||
--configuration Release \
|
dotnet publish Clario.Desktop/Clario.Desktop.csproj \
|
||||||
--runtime linux-x64 \
|
-r linux-x64 \
|
||||||
--self-contained true \
|
-c Release \
|
||||||
--output ./publish/linux \
|
--self-contained true \
|
||||||
-p:PublishSingleFile=true \
|
-p:PublishSingleFile=true \
|
||||||
-p:IncludeNativeLibrariesForSelfExtract=true
|
-o ./publish/linux-x64
|
||||||
|
|
||||||
|
|
||||||
|
- 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: ./publish/linux
|
path: Clario-linux-x64.tar.gz
|
||||||
retention-days: 7
|
|
||||||
Reference in New Issue
Block a user