From 0ba17f4938d099a8dfaf6f68537c405ce8f2532b Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Sun, 8 Dec 2024 11:06:20 -0500 Subject: [PATCH 1/6] Update README.md --- README.md | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index e0466d50..34c1af96 100644 --- a/README.md +++ b/README.md @@ -1,31 +1,15 @@ -# bluefin and aurora +# Aurora [![Codacy Badge](https://app.codacy.com/project/badge/Grade/2503a44c1105456483517f793af75ee7)](https://app.codacy.com/gh/ublue-os/bluefin/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade) [![GTS Images](https://github.com/ublue-os/bluefin/actions/workflows/build-image-gts.yml/badge.svg)](https://github.com/ublue-os/bluefin/actions/workflows/build-image-gts.yml)[![Stable Images](https://github.com/ublue-os/bluefin/actions/workflows/build-image-stable.yml/badge.svg)](https://github.com/ublue-os/bluefin/actions/workflows/build-image-stable.yml)[![Latest Images](https://github.com/ublue-os/bluefin/actions/workflows/build-image-latest.yml/badge.svg)](https://github.com/ublue-os/bluefin/actions/workflows/build-image-latest.yml)[![Beta Images](https://github.com/ublue-os/bluefin/actions/workflows/build-image-beta.yml/badge.svg)](https://github.com/ublue-os/bluefin/actions/workflows/build-image-beta.yml) -## Bluefin - [projectbluefin.io](https://projectbluefin.io) - -![image](https://github.com/ublue-os/bluefin/assets/1264109/b093bdec-40dc-48d2-b8ff-fcf0df390e8c) - -> "Evolution is a process of constant branching and expansion." - Stephen Jay Gould - -Bluefin strives to cover these two use cases. For end users it provides a system as reliable as a Chromebook with near-zero maintainance, with the power of homebrew, flathub, and a container runtime to give you access to all the best software Open Source has to offer. Check [Introduction to Bluefin](https://universal-blue.discourse.group/t/introduction-to-bluefin/41) for a feature walkthrough. - -- [Download Bluefin](https://projectbluefin.io/#scene-picker) - -## Aurora - [getaurora.dev](https://getaurora.dev) - ![Screenshot_20240423_211805](https://github.com/ublue-os/bluefin/assets/40402114/1bea1ed8-d97a-402a-957b-e0f338d38230) Aurora is a delightful KDE desktop experience for end-users that are looking for reliability and developers for the most-hassle free setup. Zero maintenance included. - [Download Aurora](https://getaurora.dev) -### What's the relationship between Aurora and Bluefin? - -Both Aurora and Bluefin strive to offer a curated out of the box experience for users, they only differ in the default desktop and recommended applications: Bluefin uses GNOME, Aurora uses KDE. They are both maintained and built in this repository. - ## Documentation 1. [Discussions and Announcements](https://universal-blue.discourse.group/c/bluefin/6) - strongly recommended! @@ -61,8 +45,8 @@ sudo mokutil --import public_key.der - - - Star History Chart + + + Star History Chart From bde3a0ccca9866009480ec58a0d1c48f5f705ff5 Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Sun, 8 Dec 2024 11:15:54 -0500 Subject: [PATCH 2/6] fix: remove bluefin (#3) --- .github/workflows/build-image-beta.yml | 6 ++-- .github/workflows/build-image-gts.yml | 41 ------------------------ .github/workflows/build-image-latest.yml | 6 ++-- .github/workflows/build-image-stable.yml | 6 ++-- .github/workflows/build-iso-gts.yml | 17 ---------- .github/workflows/build-iso-latest.yml | 4 +-- .github/workflows/build-iso-stable.yml | 4 +-- .github/workflows/clean.yml | 2 +- .github/workflows/generate-release.yml | 2 -- 9 files changed, 9 insertions(+), 79 deletions(-) delete mode 100644 .github/workflows/build-image-gts.yml delete mode 100644 .github/workflows/build-iso-gts.yml diff --git a/.github/workflows/build-image-beta.yml b/.github/workflows/build-image-beta.yml index 1628f017..7a02003e 100644 --- a/.github/workflows/build-image-beta.yml +++ b/.github/workflows/build-image-beta.yml @@ -15,12 +15,10 @@ on: inputs: brand_name: description: "Image Brand to Build" - default: '["bluefin"]' + default: '["aurora"]' type: choice options: - - '["bluefin"]' - '["aurora"]' - - '["bluefin", "aurora"]' jobs: build-image-beta: @@ -30,7 +28,7 @@ jobs: strategy: fail-fast: false matrix: - brand_name: ${{ fromJson(inputs.brand_name || '["bluefin", "aurora"]') }} + brand_name: ${{ fromJson(inputs.brand_name || '["aurora"]') }} with: brand_name: ${{ matrix.brand_name }} stream_name: beta diff --git a/.github/workflows/build-image-gts.yml b/.github/workflows/build-image-gts.yml deleted file mode 100644 index e5ca3505..00000000 --- a/.github/workflows/build-image-gts.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: GTS Images -on: - pull_request: - branches: - - main - - testing - paths-ignore: - - "**.md" - schedule: - - cron: "45 5 * * 0" # 5:45 UTC Weekly on Sundays - workflow_dispatch: - workflow_call: - -jobs: - build-image-gts: - name: Build GTS Images - uses: ./.github/workflows/reusable-build.yml - secrets: inherit - strategy: - fail-fast: false - matrix: - brand_name: [bluefin] - with: - kernel_pin: 6.11.3-200.fc40.x86_64 - brand_name: ${{ matrix.brand_name }} - stream_name: gts - - generate_release: - name: Generate Release - needs: [build-image-gts] - secrets: inherit - uses: ./.github/workflows/generate-release.yml - with: - stream_name: '["gts"]' - - build-iso-gts: - name: Build GTS ISOs - needs: [build-image-gts] - if: github.event_name == 'schedule' - secrets: inherit - uses: ./.github/workflows/build-iso-gts.yml diff --git a/.github/workflows/build-image-latest.yml b/.github/workflows/build-image-latest.yml index 990cd91c..44c85540 100644 --- a/.github/workflows/build-image-latest.yml +++ b/.github/workflows/build-image-latest.yml @@ -15,12 +15,10 @@ on: inputs: brand_name: description: "Image Brand to Build" - default: '["bluefin"]' + default: '["aurora"]' type: choice options: - - '["bluefin"]' - '["aurora"]' - - '["bluefin", "aurora"]' jobs: build-image-latest: @@ -30,7 +28,7 @@ jobs: strategy: fail-fast: false matrix: - brand_name: ${{ fromJson(inputs.brand_name || '["bluefin", "aurora"]') }} + brand_name: ${{ fromJson(inputs.brand_name || '["aurora"]') }} with: image_flavors: '["main", "nvidia", "hwe", "hwe-nvidia"]' brand_name: ${{ matrix.brand_name }} diff --git a/.github/workflows/build-image-stable.yml b/.github/workflows/build-image-stable.yml index 38248e77..a8cc1981 100644 --- a/.github/workflows/build-image-stable.yml +++ b/.github/workflows/build-image-stable.yml @@ -15,12 +15,10 @@ on: inputs: brand_name: description: "Image Brand to Build" - default: '["bluefin"]' + default: '["aurora"]' type: choice options: - - '["bluefin"]' - '["aurora"]' - - '["bluefin", "aurora"]' jobs: build-image-stable: @@ -30,7 +28,7 @@ jobs: strategy: fail-fast: false matrix: - brand_name: ${{ fromJson(inputs.brand_name || '["bluefin", "aurora"]') }} + brand_name: ${{ fromJson(inputs.brand_name || '["aurora"]') }} with: kernel_pin: 6.11.3-300.fc41.x86_64 brand_name: ${{ matrix.brand_name }} diff --git a/.github/workflows/build-iso-gts.yml b/.github/workflows/build-iso-gts.yml deleted file mode 100644 index 6c12b0aa..00000000 --- a/.github/workflows/build-iso-gts.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: GTS ISO -on: - workflow_dispatch: - workflow_call: - -jobs: - build-iso-gts: - name: Build GTS ISOs - uses: ./.github/workflows/reusable-build-iso.yml - secrets: inherit - strategy: - fail-fast: false - matrix: - brand_name: [bluefin] - with: - brand_name: ${{ matrix.brand_name }} - stream_name: gts diff --git a/.github/workflows/build-iso-latest.yml b/.github/workflows/build-iso-latest.yml index 5e52db0d..94300260 100644 --- a/.github/workflows/build-iso-latest.yml +++ b/.github/workflows/build-iso-latest.yml @@ -5,12 +5,10 @@ on: inputs: brand_name: description: "Image Brand to Build" - default: '["bluefin"]' + default: '["aurora"]' type: choice options: - - '["bluefin"]' - '["aurora"]' - - '["bluefin", "aurora"]' jobs: build-iso-latest: diff --git a/.github/workflows/build-iso-stable.yml b/.github/workflows/build-iso-stable.yml index e7a09e30..26d7628a 100644 --- a/.github/workflows/build-iso-stable.yml +++ b/.github/workflows/build-iso-stable.yml @@ -5,12 +5,10 @@ on: inputs: brand_name: description: "Image Brand to Build" - default: '["bluefin"]' + default: '["aurora"]' type: choice options: - - '["bluefin"]' - '["aurora"]' - - '["bluefin", "aurora"]' jobs: build-iso-stable: diff --git a/.github/workflows/clean.yml b/.github/workflows/clean.yml index 1d4f1ffb..cff26d7a 100644 --- a/.github/workflows/clean.yml +++ b/.github/workflows/clean.yml @@ -17,7 +17,7 @@ jobs: uses: dataaxiom/ghcr-cleanup-action@v1.0.13 with: token: ${{ secrets.GITHUB_TOKEN }} - packages: aurora,aurora-asus,aurora-asus-nvidia,aurora-dx,aurora-dx-asus,aurora-dx-hwe,aurora-dx-asus-nvidia,aurora-dx-hwe-nvidia,aurora-dx-nvidia,aurora-dx-surface,aurora-dx-surface-nvidia,aurora-hwe,aurora-hwe-nvidia,aurora-surface,aurora-nvidia,aurora-surface,aurora-surface-nvidia,bluefin,bluefin-asus-nvidia,bluefin-dx,bluefin-dx-asus-nvidia,bluefin-dx-hwe,bluefin-dx-hwe-nvidia,bluefin-dx-nvidia,bluefin-hwe,bluefin-nvidia + packages: aurora,aurora-asus,aurora-asus-nvidia,aurora-dx,aurora-dx-asus,aurora-dx-hwe,aurora-dx-asus-nvidia,aurora-dx-hwe-nvidia,aurora-dx-nvidia,aurora-dx-surface,aurora-dx-surface-nvidia,aurora-hwe,aurora-hwe-nvidia,aurora-surface,aurora-nvidia,aurora-surface,aurora-surface-nvidia older-than: 90 days delete-orphaned-images: true keep-n-tagged: 7 diff --git a/.github/workflows/generate-release.yml b/.github/workflows/generate-release.yml index 98a45bd1..ce194311 100644 --- a/.github/workflows/generate-release.yml +++ b/.github/workflows/generate-release.yml @@ -25,8 +25,6 @@ on: required: true type: choice options: - - '["gts", "stable"]' - - '["gts"]' - '["stable"]' # - '["stable-daily"]' # - '["latest"]' From a15a7cb8d3c69615296fc26c3c17e1bd57d590f7 Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Sun, 8 Dec 2024 11:34:57 -0500 Subject: [PATCH 3/6] chore(ci): don't build GTS here (#4) --- .github/workflows/build-images.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index 5009707b..7381c517 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -8,9 +8,6 @@ permissions: id-token: write jobs: - build-image-gts: - uses: ./.github/workflows/build-image-gts.yml - secrets: inherit build-image-stable: uses: ./.github/workflows/build-image-stable.yml secrets: inherit From 67145e033da2542ac2d42b521c2696fe21d16b0f Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Sun, 8 Dec 2024 13:17:36 -0500 Subject: [PATCH 4/6] docs: update repobeats (#5) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34c1af96..98a49f83 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ sudo mokutil --import public_key.der ## Repobeats -![Alt](https://repobeats.axiom.co/api/embed/40b85b252bf6ea25eb90539d1adcea013ccae69a.svg "Repobeats analytics image") +![Alt](https://repobeats.axiom.co/api/embed/c86e98a6654e55f789375ff210dd4eb95f757906.svg "Repobeats analytics image") ## Star History From c7501638a2769b755bc70e4ef1965d68de915545 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 8 Dec 2024 13:18:00 -0500 Subject: [PATCH 5/6] chore(deps): bump dataaxiom/ghcr-cleanup-action from 1.0.13 to 1.0.14 (#2) Bumps [dataaxiom/ghcr-cleanup-action](https://github.com/dataaxiom/ghcr-cleanup-action) from 1.0.13 to 1.0.14. - [Release notes](https://github.com/dataaxiom/ghcr-cleanup-action/releases) - [Commits](https://github.com/dataaxiom/ghcr-cleanup-action/compare/v1.0.13...v1.0.14) --- updated-dependencies: - dependency-name: dataaxiom/ghcr-cleanup-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/clean.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/clean.yml b/.github/workflows/clean.yml index cff26d7a..a76bf861 100644 --- a/.github/workflows/clean.yml +++ b/.github/workflows/clean.yml @@ -14,7 +14,7 @@ jobs: packages: write steps: - name: Delete Images Older Than 90 Days - uses: dataaxiom/ghcr-cleanup-action@v1.0.13 + uses: dataaxiom/ghcr-cleanup-action@v1.0.14 with: token: ${{ secrets.GITHUB_TOKEN }} packages: aurora,aurora-asus,aurora-asus-nvidia,aurora-dx,aurora-dx-asus,aurora-dx-hwe,aurora-dx-asus-nvidia,aurora-dx-hwe-nvidia,aurora-dx-nvidia,aurora-dx-surface,aurora-dx-surface-nvidia,aurora-hwe,aurora-hwe-nvidia,aurora-surface,aurora-nvidia,aurora-surface,aurora-surface-nvidia From 7fc25494c5a02200844374a482a1f5a34f6b5e7f Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Sun, 8 Dec 2024 13:47:16 -0500 Subject: [PATCH 6/6] fix: update funding MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add yourself in here. 😄 --- .github/FUNDING.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 4179188e..a3f8f30a 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1 @@ -github: [bketelsen, castrojo, nicknamenamenick] +github: [nicknamenamenick]