Compare commits

...

2 Commits

Author SHA1 Message Date
9664873c20 Use fedora base image and install nodejs, docker, and docker-buildx
Some checks failed
bluebuild / Build Custom Image (recipe.yml) (pull_request) Failing after 1m26s
2025-06-22 20:53:34 -04:00
1abe182188 Removed --rechunk 2025-06-22 20:50:23 -04:00

View File

@@ -18,7 +18,7 @@ on:
jobs:
bluebuild:
name: Build Custom Image
runs-on: rocky-minimal
runs-on: fedora-latest
permissions:
contents: read
packages: write
@@ -28,6 +28,11 @@ jobs:
recipe:
- recipe.yml
steps:
- name: Install required packages
shell: bash
run: |
sudo dnf install -y nodejs docker-cli docker-buildx containerd
- uses: sigstore/cosign-installer@v3.9.0
with:
install-dir: /usr/bin
@@ -88,4 +93,4 @@ jobs:
RUST_LOG_STYLE: always
CLICOLOR_FORCE: "1"
run: |
sudo -E bluebuild build -v --push --rechunk ${RECIPE_PATH}
sudo -E bluebuild build -v --push ${RECIPE_PATH}