Factory Build (All Configs) #84
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: Factory Build (All Configs) | |
on: | |
workflow_dispatch: | |
inputs: | |
factoryTag: | |
description: The factory tag to build | |
type: string | |
required: true | |
jobs: | |
build_firmware_all: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
#release: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build all firmware configs for klipper | |
run: | | |
$PWD/.github/factory-build-all.sh ${{ inputs.factoryTag }} | |
- name: Archive resultant builds | |
uses: actions/upload-artifact@v4 | |
with: | |
name: firmware_bundles | |
path: dist/*.tgz | |
if-no-files-found: error | |
compression-level: 0 | |
#TODO: Publish somehow |