use inputs instead of env #21
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
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" |