We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ceb35e commit 8171203Copy full SHA for 8171203
.github/workflows/build.yml
@@ -70,14 +70,13 @@ jobs:
70
uses: actions/download-artifact@v4
71
with:
72
path: ./artifacts
73
+ merge-multiple: false
74
75
- name: Upload Release Assets
76
run: |
- echo "Listing files"
77
- find artifacts
78
- echo "Enf of list"
79
- for file in ./artifacts/*; do
80
- gh release upload ${{ needs.create-release.outputs.upload_url }} "$file" --clobber
+ for file in ./artifacts/*/combined.bin; do
+ base_name=$(basename $(dirname "$file"))
+ gh release upload ${{ needs.create-release.outputs.upload_url }} "$file" --clobber --name "graphical_bootloader_${base_name}.bin"
81
done
82
env:
83
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments