Skip to content

Get file screen kind of working #1

Get file screen kind of working

Get file screen kind of working #1

Workflow file for this run

name: build

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

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

(Line: 23, Col: 9): Unexpected value 'runs', (Line: 22, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
push:
branches:
- main
jobs:
release:
name: Release - ${{ matrix.platform.os-name }}
strategy:
matrix:
platform:
- os-name: Linux-armv7
runs-on: ubuntu-24.04
target: armv7-unknown-linux-musleabihf
runs-on: ${{ matrix.platform.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build container
runs: docker build -t cross-armv7:latest -f armv7.dockerfile .
- name: Build binary
uses: houseabsolute/actions-rust-cross@v1
with:
command: build
target: ${{ matrix.platform.target }}
args: "--locked --release"
strip: true
- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform.os-name }}
path: target/${{ matrix.platform.target }}/release/atomscreen