chore: remove deprecated images

This commit is contained in:
qoijjj
2024-03-11 18:04:13 -07:00
committed by GitHub
parent 718a53b7f6
commit 6686d9ecc9
62 changed files with 10 additions and 1239 deletions

View File

@@ -41,34 +41,11 @@ jobs:
- recipes/general/recipe-wayblue-river-nvidia.yml
- recipes/general/recipe-wayblue-sway-main.yml
- recipes/general/recipe-wayblue-sway-nvidia.yml
# laptop
- recipes/laptop/recipe-silverblue-main-laptop.yml
- recipes/laptop/recipe-silverblue-nvidia-laptop.yml
- recipes/laptop/recipe-silverblue-asus.yml
- recipes/laptop/recipe-silverblue-asus-nvidia.yml
- recipes/laptop/recipe-kinoite-asus.yml
- recipes/laptop/recipe-kinoite-asus-nvidia.yml
- recipes/laptop/recipe-kinoite-main-laptop.yml
- recipes/laptop/recipe-kinoite-nvidia-laptop.yml
- recipes/laptop/recipe-cinnamon-main-laptop.yml
- recipes/laptop/recipe-cinnamon-nvidia-laptop.yml
- recipes/laptop/recipe-bluefin-main-laptop.yml
- recipes/laptop/recipe-bluefin-nvidia-laptop.yml
- recipes/laptop/recipe-sericea-main-laptop.yml
- recipes/laptop/recipe-sericea-nvidia-laptop.yml
- recipes/laptop/recipe-wayblue-wayfire-main-laptop.yml
- recipes/laptop/recipe-wayblue-wayfire-nvidia-laptop.yml
- recipes/laptop/recipe-wayblue-hyprland-main-laptop.yml
- recipes/laptop/recipe-wayblue-hyprland-nvidia-laptop.yml
- recipes/laptop/recipe-wayblue-river-main-laptop.yml
- recipes/laptop/recipe-wayblue-river-nvidia-laptop.yml
- recipes/laptop/recipe-wayblue-sway-main-laptop.yml
- recipes/laptop/recipe-wayblue-sway-nvidia-laptop.yml
# framework
- recipes/laptop/recipe-silverblue-framework.yml
- recipes/laptop/recipe-kinoite-framework.yml
- recipes/laptop/recipe-bluefin-framework.yml
- recipes/laptop/recipe-sericea-framework.yml
# asus
- recipes/asus/recipe-silverblue-asus.yml
- recipes/asus/recipe-silverblue-asus-nvidia.yml
- recipes/asus/recipe-kinoite-asus.yml
- recipes/asus/recipe-kinoite-asus-nvidia.yml
# server
- recipes/server/recipe-server-main.yml
- recipes/server/recipe-server-nvidia.yml
@@ -94,37 +71,11 @@ jobs:
- recipes/general/recipe-wayblue-river-nvidia-userns.yml
- recipes/general/recipe-wayblue-sway-main-userns.yml
- recipes/general/recipe-wayblue-sway-nvidia-userns.yml
# laptop
- recipes/laptop/recipe-silverblue-main-laptop-userns.yml
- recipes/laptop/recipe-silverblue-nvidia-laptop-userns.yml
- recipes/laptop/recipe-silverblue-asus-userns.yml
- recipes/laptop/recipe-silverblue-asus-nvidia-userns.yml
- recipes/laptop/recipe-kinoite-asus-userns.yml
- recipes/laptop/recipe-kinoite-asus-nvidia-userns.yml
- recipes/laptop/recipe-kinoite-main-laptop-userns.yml
- recipes/laptop/recipe-kinoite-nvidia-laptop-userns.yml
- recipes/laptop/recipe-cinnamon-main-laptop-userns.yml
- recipes/laptop/recipe-cinnamon-nvidia-laptop-userns.yml
- recipes/laptop/recipe-bluefin-main-laptop-userns.yml
- recipes/laptop/recipe-bluefin-nvidia-laptop-userns.yml
- recipes/laptop/recipe-bluefin-dx-main-laptop-userns.yml
- recipes/laptop/recipe-bluefin-dx-nvidia-laptop-userns.yml
- recipes/laptop/recipe-sericea-main-laptop-userns.yml
- recipes/laptop/recipe-sericea-nvidia-laptop-userns.yml
- recipes/laptop/recipe-wayblue-wayfire-main-laptop-userns.yml
- recipes/laptop/recipe-wayblue-wayfire-nvidia-laptop-userns.yml
- recipes/laptop/recipe-wayblue-hyprland-main-laptop-userns.yml
- recipes/laptop/recipe-wayblue-hyprland-nvidia-laptop-userns.yml
- recipes/laptop/recipe-wayblue-river-main-laptop-userns.yml
- recipes/laptop/recipe-wayblue-river-nvidia-laptop-userns.yml
- recipes/laptop/recipe-wayblue-sway-main-laptop-userns.yml
- recipes/laptop/recipe-wayblue-sway-nvidia-laptop-userns.yml
# framework
- recipes/laptop/recipe-silverblue-framework-userns.yml
- recipes/laptop/recipe-kinoite-framework-userns.yml
- recipes/laptop/recipe-bluefin-framework-userns.yml
- recipes/laptop/recipe-bluefin-dx-framework-userns.yml
- recipes/laptop/recipe-sericea-framework-userns.yml
# asus
- recipes/asus/recipe-silverblue-asus-userns.yml
- recipes/asus/recipe-silverblue-asus-nvidia-userns.yml
- recipes/asus/recipe-kinoite-asus-userns.yml
- recipes/asus/recipe-kinoite-asus-nvidia-userns.yml
# server
- recipes/server/recipe-server-main-userns.yml
- recipes/server/recipe-server-nvidia-userns.yml

View File

@@ -1,46 +0,0 @@
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:39
options: --privileged
steps:
- uses: actions/checkout@v4
- name: Generate ISO
uses: ublue-os/isogenerator-old@v2.3.1
id: isogenerator
with:
image-name: ${{ github.event.repository.name }}
installer-repo: releases
installer-major-version: 39
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 view auto-iso -R ${{ github.repository_owner }}/${{ github.event.repository.name }} --json assets -q .assets[].name | xargs --no-run-if-empty -L 1 gh release delete-asset auto-iso -R ${{ github.repository_owner }}/${{ github.event.repository.name }}
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