Skip to content

Bump deps and add CI #3

Bump deps and add CI

Bump deps and add CI #3

Workflow file for this run

name: build

Check failure on line 1 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yaml

Invalid workflow file

(Line: 10, Col: 13): Required property is missing: value
on:
pull_request:
branches: [ main ]
workflow_dispatch:
workflow_call:
outputs:
installer_ver:
description: asahi-installer built version string
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
fetch-tags: true
submodules: recursive
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y gcc-aarch64-linux-gnu
sudo apt-get install --no-install-recommends -y 7zip jq
rustup target install aarch64-unknown-none-softfloat
- name: Build asahi-installer
run: |
./build.sh
echo "installer_ver=$(cat releases/latest)" >> $GITHUB_OUTPUT
- name: Upload artefact
uses: actions/upload-artifact@v4
with:
name: installer-build
path: |
releases/*