-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Download firmware artifacts and clean up intermediate folders
- Loading branch information
1 parent
e5d5df8
commit f3e943a
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,8 +64,21 @@ jobs: | |
- name: ⬇️ Download documentation artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: site | ||
- name: ⬇️ Download firmware artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: onju-voice* | ||
path: firmwares | ||
- name: Display firmware artifacts | ||
- name: 🧹 Remove intermediate version folder | ||
run: |- | ||
for d in firmwares/*/*; do | ||
if [ -d "$d" ]; then | ||
mv $d/* $d/../ | ||
rm -rf $d | ||
fi | ||
done | ||
- name: 🧪 Display firmware artifacts | ||
run: ls -lR | ||
|
||
# deploy: | ||
|