Skip to content

Commit be8dfac

Browse files
committed
Fix archive
1 parent dff7ec3 commit be8dfac

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,13 @@ jobs:
2828
- name: Build
2929
run: |
3030
make build
31-
- name: Archive
31+
- name: Archive Flight Software
3232
uses: actions/upload-artifact@v4
3333
with:
34-
name: proves
35-
path: artifacts/proves.zip
34+
name: proveskit-flight-software
35+
path: artifacts/proves/flight-software
36+
- name: Archive Ground Station
37+
uses: actions/upload-artifact@v4
38+
with:
39+
name: proveskit-ground-station
40+
path: artifacts/proves/ground-station

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ BOARD_MOUNT_POINT ?= ""
4949
VERSION ?= $(shell git tag --points-at HEAD --sort=-creatordate < /dev/null | head -n 1)
5050

5151
.PHONY: install
52-
install-%: build-% ## Install the project onto a connected PROVES Kit use `make install BOARD_MOUNT_POINT=/my_board_destination/` to specify the mount point
52+
install-%: build-% ## Install the project onto a connected PROVES Kit use `make install-flight-software BOARD_MOUNT_POINT=/my_board_destination/` to specify the mount point
5353
ifeq ($(OS),Windows_NT)
5454
rm -rf $(BOARD_MOUNT_POINT)
5555
cp -r artifacts/proves/$*/* $(BOARD_MOUNT_POINT)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# ProvesKit RP2040 v4 CircuitPython Flight Software
1+
# ProvesKit RP2040 v4 CircuitPython Flight Software and Ground Station
22

33
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
44
![CI](https://github.com/proveskit/CircuitPython_RP2040_v4/actions/workflows/ci.yaml/badge.svg)
55

6-
This is the reference software for the v4x PROVES Kit Flight Controller boards. Clone this repository and use the `make install ...` tooling to get your v4x Flight Controller Board up and running!
6+
This is the reference software for the v4x PROVES Kit Flight Controller boards. Clone this repository and use the `make install-flight-software ...` tooling to get your v4x Flight Controller Board up and running!
77

88
# Development Getting Started
99
We welcome contributions, so please feel free to join us. If you have any questions about contributing please open an issue or a discussion.

0 commit comments

Comments
 (0)