From 05480ae0a6da641f450645c0a8ad36342850b228 Mon Sep 17 00:00:00 2001 From: sharpenedblade Date: Tue, 29 Oct 2024 17:17:13 -0700 Subject: [PATCH] Make f41 a stable release --- .github/workflows/fedora-ci.yml | 10 ++++----- .github/workflows/fedora-silverblue.yml | 10 ++++----- .github/workflows/nightly-update.yml | 30 ------------------------- 3 files changed, 8 insertions(+), 42 deletions(-) delete mode 100644 .github/workflows/nightly-update.yml diff --git a/.github/workflows/fedora-ci.yml b/.github/workflows/fedora-ci.yml index 96ec018..c57b20e 100644 --- a/.github/workflows/fedora-ci.yml +++ b/.github/workflows/fedora-ci.yml @@ -2,14 +2,12 @@ name: Build image 'fedora-ci' on: push: branches: - - main - paths: - - 'fedora-ci/*' + - f41 jobs: build-image: uses: ./.github/workflows/build-image.yml with: image_name: "fedora-ci" - tags: unstable - publish: ${{ github.ref == 'refs/heads/main' }} - branch: main + tags: "41" + publish: ${{ github.ref == 'refs/heads/f41' }} + branch: f41 diff --git a/.github/workflows/fedora-silverblue.yml b/.github/workflows/fedora-silverblue.yml index 7e6bb89..bd477c3 100644 --- a/.github/workflows/fedora-silverblue.yml +++ b/.github/workflows/fedora-silverblue.yml @@ -2,14 +2,12 @@ name: Build image 'fedora-silverblue' on: push: branches: - - main - paths: - - 'fedora-silverblue/*' + - f41 jobs: build-image: uses: ./.github/workflows/build-image.yml with: image_name: "fedora-silverblue" - tags: unstable - publish: ${{ github.ref == 'refs/heads/main' }} - branch: main + tags: "41" + publish: ${{ github.ref == 'refs/heads/f41' }} + branch: f41 diff --git a/.github/workflows/nightly-update.yml b/.github/workflows/nightly-update.yml deleted file mode 100644 index e586d96..0000000 --- a/.github/workflows/nightly-update.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Update all images -on: - schedule: - # Every day at 2:49 AM - - cron: "49 2 * * *" - -jobs: - fedora-ci-40: - uses: ./.github/workflows/build-image.yml - with: - image_name: "fedora-ci" - tags: "40" - publish: true - branch: f40 - - fedora-ci-unstable: - uses: ./.github/workflows/build-image.yml - with: - image_name: "fedora-ci" - tags: unstable - publish: true - branch: main - - fedora-silverblue-unstable: - uses: ./.github/workflows/build-image.yml - with: - image_name: "fedora-silverblue" - tags: unstable - publish: true - branch: main