Skip to content

Commit 18ecd13

Browse files
committed
produce a README
1 parent 91ab7d0 commit 18ecd13

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/githubci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,12 @@ jobs:
5151
if: startsWith(github.ref, 'refs/tags/')
5252
run: |
5353
if [ -d build ]; then
54-
cd build && zip -9 -o ${{ matrix.arduino-platform }}.zip *.hex *.bin *.uf2
54+
(
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
5560
fi
5661
5762
- name: Create release

0 commit comments

Comments
 (0)