Add Fedora 40 #2
Workflow file for this run
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
# GitHub Action Workflow for building the Fedora 40 images. | |
# SPDX-License-Identifier: BSD-2-Clause-Patent | |
name: "Fedora 40 Images" | |
# This workflow only runs (on the main branch or on PRs targeted | |
# at the main branch) and if files inside the Fedora-39 directory | |
# have been modifed/added/removed... | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: | |
- 'Fedora-40/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'Fedora-40/**' | |
jobs: | |
Build_Image: | |
uses: ./.github/workflows/build-image.yaml | |
with: | |
image_name: "Fedora-40" | |
sub_images: "build test dev" |