Skip to content

Commit

Permalink
Automate github release binary
Browse files Browse the repository at this point in the history
  • Loading branch information
awwaiid committed Oct 21, 2024
1 parent 6786cef commit 1bda434
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
# on:
# release:
# types: [created]

on: [push]

name: ARMv7 build
name: Remarkable Build

jobs:
linux_arm7:
remarkable_build:
name: Linux ARMv7
runs-on: ubuntu-latest
steps:
Expand All @@ -21,4 +17,10 @@ jobs:
with:
use-cross: true
command: build
args: --target armv7-unknown-linux-gnueabihf
args: --target armv7-unknown-linux-gnueabihf --release
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
target/armv7-unknown-linux-gnueabihf/release/ghostwriter

0 comments on commit 1bda434

Please sign in to comment.