Skip to content

use inputs instead of env #21

use inputs instead of env

use inputs instead of env #21

Workflow file for this run

name: Build smolBSD image
on:
push:
branches:
- main
workflow_dispatch:
inputs:
img:
description: "Image target"
required: true
default: "rescue"
arch:
description: "Architecture"
required: true
default: "amd64"
mountro:
description: "Build as read-only (y or empty)"
required: false
default:
jobs:
build_img:
runs-on: ubuntu-latest
container:
image: debian:latest
options: --privileged
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up environment
run: |
apt update && apt install -y curl xz-utils make sudo git
touch /in_gh
- name: Clean cache
run: rm -rf /var/cache
- name: Build image
run: |
make NOSVCIMGBUILD=yes ARCH=${{ inputs.arch }} MOUNTRO=${{ inputs.mountro }} ${{ inputs.img }}
- uses: actions/upload-artifact@v4
with:
name: images
path: "*.img"