mirror of
https://github.com/Novattz/creamlinux-installer.git
synced 2025-12-06 03:55:37 -05:00
workflows
This commit is contained in:
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
@@ -13,7 +13,9 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- platform: 'ubuntu-20.04'
|
- platform: 'ubuntu-20.04' # Stable Debian-based release
|
||||||
|
args: ''
|
||||||
|
- platform: 'ubuntu-22.04' # Alternative stable option
|
||||||
args: ''
|
args: ''
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
@@ -79,7 +81,7 @@ jobs:
|
|||||||
- name: Upload build artifacts
|
- name: Upload build artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: creamlinux-${{ matrix.platform }}-artifacts
|
name: creamlinux-ubuntu-20.04-artifacts
|
||||||
path: |
|
path: |
|
||||||
src-tauri/target/release/bundle/
|
src-tauri/target/release/bundle/
|
||||||
src-tauri/target/release/creamlinux
|
src-tauri/target/release/creamlinux
|
||||||
@@ -89,9 +91,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload AppImage (if exists)
|
- name: Upload AppImage (if exists)
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
if: matrix.platform == 'ubuntu-20.04' || matrix.platform == 'ubuntu-22.04'
|
|
||||||
with:
|
with:
|
||||||
name: creamlinux-appimage-${{ matrix.platform }}
|
name: creamlinux-appimage
|
||||||
path: |
|
path: |
|
||||||
src-tauri/target/release/bundle/appimage/*.AppImage
|
src-tauri/target/release/bundle/appimage/*.AppImage
|
||||||
retention-days: 30
|
retention-days: 30
|
||||||
@@ -99,9 +100,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload DEB package (if exists)
|
- name: Upload DEB package (if exists)
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
if: matrix.platform == 'ubuntu-20.04' || matrix.platform == 'ubuntu-22.04'
|
|
||||||
with:
|
with:
|
||||||
name: creamlinux-deb-${{ matrix.platform }}
|
name: creamlinux-deb
|
||||||
path: |
|
path: |
|
||||||
src-tauri/target/release/bundle/deb/*.deb
|
src-tauri/target/release/bundle/deb/*.deb
|
||||||
retention-days: 30
|
retention-days: 30
|
||||||
|
|||||||
Reference in New Issue
Block a user