mirror of
https://github.com/13hannes11/toolbx-tuner.git
synced 2024-09-03 23:21:00 +02:00
Add building of all flatpak manifest targets (closes #48)
This commit is contained in:
60
.github/workflows/pre-release.yml
vendored
60
.github/workflows/pre-release.yml
vendored
@@ -7,8 +7,8 @@ on:
|
|||||||
name: build-and-prerelease
|
name: build-and-prerelease
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
flatpak:
|
flatpak-release-target:
|
||||||
name: Flatpak-prerelease
|
name: build-flatpak-release-target
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: bilelmoussaoui/flatpak-github-actions:gnome-46
|
image: bilelmoussaoui/flatpak-github-actions:gnome-46
|
||||||
@@ -19,14 +19,58 @@ jobs:
|
|||||||
lfs: true
|
lfs: true
|
||||||
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6.3
|
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6.3
|
||||||
with:
|
with:
|
||||||
bundle: toolboxtuner.flatpak
|
bundle: toolboxtuner-release.flatpak
|
||||||
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.Devel.json
|
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.json
|
||||||
run-tests: true
|
run-tests: true
|
||||||
cache-key: flatpak-builder-${{ github.sha }}
|
cache-key: flatpak-builder-release-${{ github.sha }}
|
||||||
upload-artifact: false
|
upload-artifact: false
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: flatpak
|
name: flatpak-release
|
||||||
|
path: |
|
||||||
|
*.flatpak
|
||||||
|
flatpak-screenshot-target:
|
||||||
|
name: build-flatpak-screenshot-target
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: bilelmoussaoui/flatpak-github-actions:gnome-46
|
||||||
|
options: --privileged
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
lfs: true
|
||||||
|
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6.3
|
||||||
|
with:
|
||||||
|
bundle: toolboxtuner-screenshot.flatpak
|
||||||
|
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.Screenshot.json
|
||||||
|
run-tests: true
|
||||||
|
cache-key: flatpak-builder-screenshot-${{ github.sha }}
|
||||||
|
upload-artifact: false
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: flatpak-screenshot
|
||||||
|
path: |
|
||||||
|
*.flatpak
|
||||||
|
flatpak-dev-target:
|
||||||
|
name: build-flatpak-dev-target
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: bilelmoussaoui/flatpak-github-actions:gnome-46
|
||||||
|
options: --privileged
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
lfs: true
|
||||||
|
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6.3
|
||||||
|
with:
|
||||||
|
bundle: toolboxtuner-dev.flatpak
|
||||||
|
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.Devel.json
|
||||||
|
run-tests: true
|
||||||
|
cache-key: flatpak-builder-dev-${{ github.sha }}
|
||||||
|
upload-artifact: false
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: flatpak-dev
|
||||||
path: |
|
path: |
|
||||||
*.flatpak
|
*.flatpak
|
||||||
vendor:
|
vendor:
|
||||||
@@ -47,7 +91,7 @@ jobs:
|
|||||||
*.sha256sum
|
*.sha256sum
|
||||||
publish-prerelease:
|
publish-prerelease:
|
||||||
name: publish-prerelease
|
name: publish-prerelease
|
||||||
needs: [flatpak, vendor]
|
needs: [flatpak-dev-target, vendor]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: startsWith(github.ref_name, 'main') && github.ref_type == 'branch'
|
if: startsWith(github.ref_name, 'main') && github.ref_type == 'branch'
|
||||||
steps:
|
steps:
|
||||||
@@ -61,7 +105,7 @@ jobs:
|
|||||||
automatic_release_tag: dev
|
automatic_release_tag: dev
|
||||||
title: 'Latest Development Build'
|
title: 'Latest Development Build'
|
||||||
files: |
|
files: |
|
||||||
**/*.flatpak
|
**/*-dev.flatpak
|
||||||
**/*.tar.gz
|
**/*.tar.gz
|
||||||
**/*.sha256sum
|
**/*.sha256sum
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user