Skip to content

Commit 812414f

Browse files
authored
upload more artifacts (#49)
1 parent ffb045d commit 812414f

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/build.yml

+13-2
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,26 @@ jobs:
7474
sudo chroot $output /home/run.sh --version
7575
sudo cp $output/home/build/pixelpilot .
7676
77+
- name: Upload binary
78+
uses: actions/upload-artifact@v4
79+
with:
80+
path: |
81+
pixelpilot
82+
config_osd.json
83+
7784
- name: Versioned release
7885
if: startsWith(github.ref, 'refs/tags/')
7986
uses: softprops/action-gh-release@v2
8087
with:
81-
files: pixelpilot
88+
files: |
89+
pixelpilot
90+
config_osd.json
8291
8392
- name: Upload latest
8493
if: github.event_name != 'pull_request'
8594
uses: softprops/action-gh-release@v2
8695
with:
8796
tag_name: latest
88-
files: pixelpilot
97+
files: |
98+
pixelpilot
99+
config_osd.json

0 commit comments

Comments
 (0)