Get file screen kind of working #1
This file contains hidden or 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 | ||
|
Check failure on line 1 in .github/workflows/build.yml
|
||
| 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 | ||