Skip to content

Commit 2247085

Browse files
author
Marcelo Bezerra
committed
Add gitignore and script to download latest nightly build files
1 parent bfdcae3 commit 2247085

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.hex
2+
*.zip
3+
*~
4+
*.bak
5+
*.swp
6+
*.msi
7+
*.dmg
8+
*.rpm
9+
*.deb

download-release-files.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
NIGHTLY_BUILD=`gh release list -L1 --json tagName | grep tagName | cut -d: -f2 | cut -d\" -f2`
3+
gh release download $NIGHTLY_BUILD
4+

0 commit comments

Comments
 (0)