Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add basic justfile #44

Merged
merged 12 commits into from
Jul 3, 2024
10 changes: 0 additions & 10 deletions .github/pull.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/build-bazzite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: bazzite
on:
schedule:
- cron: "00 5 * * 2,5" # 5:00 UTC every Tuesday and Thursday
push:
paths-ignore:
- '/toolboxes/**'
- "**.md"

pull_request:
workflow_dispatch:
jobs:
bluebuild:
name: Build Custom Image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false
matrix:
recipe:
- bazzite-gnome.yml
- bazzite-plasma.yml

steps:
- name: Build Custom Image
uses: blue-build/[email protected]
with:
recipe: ${{ matrix.recipe }}
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}
36 changes: 36 additions & 0 deletions .github/workflows/build-gts-aurorafin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: gts aurorafin
on:
schedule:
- cron: "00 06 * * 0" # 06:00 UTC every Sunday
push:
paths-ignore:
- '/toolboxes/**'
- "**.md"

pull_request:
workflow_dispatch:
jobs:
bluebuild:
name: Build Custom Image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false
matrix:
recipe:
- aurora-dx-gts.yml
- aurora-gts.yml
- bluefin-dx-gts.yml
- bluefin-gts.yml

steps:
- name: Build Custom Image
uses: blue-build/[email protected]
with:
recipe: ${{ matrix.recipe }}
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: build ublue
name: latest aurorafin
on:
schedule:
- cron: "00 17 * * *" # 17:00 UTC every day
- cron: "00 05 * * *" # 05:00 UTC daily
push:
paths-ignore:
- '/toolboxes/**'
- "**.md"

pull_request:
workflow_dispatch:
jobs:
Expand All @@ -23,8 +23,6 @@ jobs:
recipe:
- aurora-dx-latest.yml
- aurora-latest.yml
- bazzite-gnome.yml
- bazzite-plasma.yml
- bluefin-dx-latest.yml
- bluefin-latest.yml

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: build ublue (stable and gts)
name: stable aurorafin
on:
schedule:
- cron: "00 17 * * 2" # 17:00 UTC every Tuesday
- cron: "00 06 * * 2" # 06:00 UTC every Tuesday
push:
paths-ignore:
- '/toolboxes/**'
Expand All @@ -21,13 +21,9 @@ jobs:
fail-fast: false
matrix:
recipe:
- aurora-dx-gts.yml
- aurora-dx-stable.yml
- aurora-gts.yml
- aurora-stable.yml
- bluefin-dx-gts.yml
- bluefin-dx-stable.yml
- bluefin-gts.yml
- bluefin-stable.yml

steps:
Expand Down
104 changes: 0 additions & 104 deletions .github/workflows/build-toolbox.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/release-iso.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
cosign.key
/Containerfile
build/
80 changes: 0 additions & 80 deletions Containerfile

This file was deleted.

Loading