Build ISO #16
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 ISO | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Which branch?' | |
required: true | |
default: 'master' | |
jobs: | |
build_iso: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Auschecken | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
submodules: true | |
- name: Build | |
run: sudo ./build-local.sh | |
- name: Check256 | |
run: "sha256sum artifacts/heyalter-*.iso >> artifacts/hashes.txt" | |
- name: Check2512 | |
run: "sha512sum artifacts/heyalter-*.iso >> artifacts/hashes.txt" | |
- name: Archive build output | |
uses: actions/upload-artifact@v3 | |