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 91ab7d0 commit 18ecd13Copy full SHA for 18ecd13
.github/workflows/githubci.yml
@@ -51,7 +51,12 @@ jobs:
51
if: startsWith(github.ref, 'refs/tags/')
52
run: |
53
if [ -d build ]; then
54
- cd build && zip -9 -o ${{ matrix.arduino-platform }}.zip *.hex *.bin *.uf2
+ (
55
+ echo "Built from Adafruit Learning System Guides `git describe --tags` for ${{ matrix.arduino-platform }}"
56
+ echo "Source code: https://github.com/adafruit/"
57
+ echo "Adafruit Learning System: https://learn.adafruit.com/"
58
+ ) > build/README.txt
59
+ cd build && zip -9 -o ${{ matrix.arduino-platform }}.zip *.hex *.bin *.uf2 *.txt
60
fi
61
62
- name: Create release
0 commit comments