Skip to content

Commit

Permalink
only upload firmwares
Browse files Browse the repository at this point in the history
  • Loading branch information
KFERMercer committed Dec 1, 2019
1 parent d88d8b3 commit ef60d83
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions openwrt-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
sed -i 's/^[ \t]*//g' ./.config
make defconfig
- name: Download package source code
- name: Make download
run: |
make download -j8
find dl -size -1024c -exec ls -l {} \;
Expand All @@ -208,8 +208,15 @@ jobs:
echo -e "$(nproc) thread build."
make -j$(nproc) V=s
- name: Assemble artifact
run: |
rm -rf ./artifact/
mkdir -p ./artifact/
find ./bin/targets/ -regex "*combined*img*" | xargs -i mv -f {} ./
find ./bin/targets/ -regex "*sysupgrade*bin*" | xargs -i mv -f {} ./
- name : Upload artifact
uses: actions/upload-artifact@master
with:
name: OpenWrt firmware
path: bin/targets
path: ./artifact/

0 comments on commit ef60d83

Please sign in to comment.