Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
3wlh committed Oct 5, 2024
2 parents 9c2af05 + f5ebe70 commit cdcf64e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/OpenWrt-view-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,10 @@ jobs:
run: |
cd openwrt/
[[ -d "Output" ]] || mkdir Output
cp -f .config Output/config
if [[ -e ".config" ]]; then
cat .config > Output/config
# cp -f .config Output/config
fi
echo "FILE_DATE=_$(date +"%Y%m%d%H%M")" >> $GITHUB_ENV
echo "status=success" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit cdcf64e

Please sign in to comment.