Skip to content

Commit

Permalink
Make the development build action output a download for the payload. (#3
Browse files Browse the repository at this point in the history
)
  • Loading branch information
VocalFan authored Nov 3, 2024
1 parent 03165d8 commit 8c8f8e8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
run: rustup component add --toolchain nightly clippy llvm-tools rust-src
- name: Install required Rust targets
run: rustup target add --toolchain nightly x86_64-unknown-none
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Check code styles
run: cargo fmt --check
- name: Lint dumper
Expand All @@ -27,3 +31,10 @@ jobs:
RUSTFLAGS: --cfg fw="1100"
- name: Lint obfw
run: cargo clippy --package obfw --all-features -- -D warnings
- name: Build Payload
run: ./build.py
- name: Upload Payload
uses: actions/upload-artifact@v4
with:
name: firmware-dumper
path: ./firmware-dumper.bin

0 comments on commit 8c8f8e8

Please sign in to comment.