This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
forked from blue-build/legacy-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add support for image signing * fix: fix build arguments * docs: update Installation in README * docs: include more detailed steps in installation section * docs: remove unneeded verification section * refactor: clean up image signing to line up more with upstream * feat: add signature rather than replace to allow rebasing back to uBlue main * style: format whitespace * refactor: fix jq, rename cosign.yaml and cosign.pub * Revert "refactor: clean up image signing to line up more with upstream" * style: prepend the entry in the JSON rather than append * fix: remove remnants from earlier image signing method * fix: remove old signing config, using the one from the config repo instead (blue-build#124) * fix: lowercase image name for signing * Updating Gamescope to pull from the most recent package. * Per the updating tools, it appears that org.gnome.Games is end of life and will no longer get updates. * Revert "Per the updating tools, it appears that org.gnome.Games is end of life and will no longer get updates." This reverts commit 0f80d30. * fix: remove GNOME Games, is deprecated * chore: justom.just add line break at EOF * chore: autostart.desktop add line break at EOF * fix: capitalize first character of comment (blue-build#132) * feat: ISO build action (blue-build#133) * feat: base iso release workflow * does not produce a functional ISO yet needs boot_menu * chore(dev): start iso workflow on iso push * fix: rename release-iso to release-please * refactor: use github-cli to create release * fix: remove job dependencies * chore: basic boot menu * fix: add permission to create release * fix: delegate tag for auto-iso releases,.. delete old version when rerunning * fix: multiline string for multine cmds * fix: specify gh repo in old release delete * fix: only create release if doesn't exist * fix: boot menu double user field * fix: clobber iso * chore: neutral defaults for boot menu * feat: run iso when iso-related changes pushed * docs: README section for ISO * fix: always get version tags (blue-build#134) --------- Co-authored-by: Scott Ames <[email protected]> --------- Co-authored-by: gerblesh <[email protected]> Co-authored-by: Jorge O. Castro <[email protected]> Co-authored-by: ER <[email protected]> Co-authored-by: Waffleophagus <[email protected]> Co-authored-by: plata <[email protected]> Co-authored-by: jh-devv <[email protected]> Co-authored-by: EinoHR <[email protected]> Co-authored-by: Scott Ames <[email protected]>
- Loading branch information
1 parent
d638419
commit 98e7867
Showing
9 changed files
with
108 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
on: | ||
push: | ||
paths: | ||
- 'boot_menu.yml' | ||
- '.github/workflows/release-iso.yml' | ||
workflow_dispatch: | ||
|
||
name: release-iso | ||
jobs: | ||
release-iso: | ||
name: Generate and Release ISOs | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
container: | ||
image: fedora:38 | ||
options: --privileged | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Generate ISO | ||
uses: ublue-os/isogenerator@main | ||
id: isogenerator | ||
with: | ||
image-name: ${{ github.event.repository.name }} | ||
installer-repo: releases | ||
installer-major-version: 38 | ||
boot-menu-path: boot_menu.yml | ||
- name: install github CLI | ||
run: | | ||
sudo dnf install 'dnf-command(config-manager)' -y | ||
sudo dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo | ||
sudo dnf install gh -y | ||
- name: Upload ISO | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
run: | | ||
if gh release list -R ${{ github.repository_owner }}/${{ github.event.repository.name }} | grep "auto-iso"; then | ||
gh release upload auto-iso ${{ steps.isogenerator.outputs.iso-path }} -R ${{ github.repository_owner }}/${{ github.event.repository.name }} --clobber | ||
else | ||
gh release create auto-iso ${{ steps.isogenerator.outputs.iso-path }} -t ISO -n "This is an automatically generated ISO release." -R ${{ github.repository_owner }}/${{ github.event.repository.name }} | ||
fi | ||
- name: Upload SHA256SUM | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
run: | ||
gh release upload auto-iso ${{ steps.isogenerator.outputs.sha256sum-path }} -R ${{ github.repository_owner }}/${{ github.event.repository.name }} --clobber |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ublue_variants: | ||
- label: ublue-os/startingpoint | ||
ks: /kickstart/ublue-os.ks | ||
flavors: | ||
- label: startingpoint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters