Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,5 @@ jobs:
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: firmware
path: |
.pio/build/**/*.hex
.pio/build/**/*.uf2
name: ZIP files
path: ./_dist/*.zip
4 changes: 2 additions & 2 deletions .github/workflows/pr_artifact_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
prefix: "Firmware for this pull request:"
format: "[Firmware.zip]({url})"
prefix: "Board and firmware folder for this pull request:"
format: "[Mobiflight-Connector.zip]({url})"
addTo: pull
10 changes: 3 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,12 @@ jobs:
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: firmware
path: |
.pio/build/**/*.hex
.pio/build/**/*.uf2
name: ZIP files
path: ./_dist/*.zip

- name: Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
.pio/build/**/*.hex
.pio/build/**/*.uf2
files: ./_dist/*.zip
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
.vscode/ipch
.vscode/arduino.json
.CustomDevices
_build
_dist
Loading