Skip to content

Commit

Permalink
优化
Browse files Browse the repository at this point in the history
  • Loading branch information
AoThen committed Mar 20, 2023
1 parent 6694445 commit 9a02a0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Build_IPK.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ on:
- MT2500
sourcecode:
description: "Source code URL"
default: "https://github.com/AoThen/luci-app-broadbandacc.git"
default: "https://github.com/messense/aliyundrive-webdav.git"
required: true
pkgname:
description: "Openwrt package name"
default: "luci-app-broadbandacc"
default: "luci-app-aliyundrive-webdav"
required: true
email:
description: "Git accuont email address"
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
run: |
git config --global user.email ${{ secrets.EMAIL }}
git config --global user.name ${{ secrets.NAME }}
git clone -b Packages https://github.com/AoThen/Openwrt-Packages --single-branch
git clone --depth 1 -b Packages https://github.com/AoThen/Openwrt-Packages --single-branch
cd Openwrt-Packages
rm -rf ${{ github.event.inputs.pkgname }}
mkdir ${{ github.event.inputs.pkgname }}
Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ git config --global user.name "AoThen"

mkdir -p ${WORKDIR}/buildsource
cd ${WORKDIR}/buildsource
git clone "$SOURCECODEURL"
git clone --depth 1 "$SOURCECODEURL"
cd ${WORKDIR}


Expand All @@ -41,7 +41,7 @@ axt1800_sdk_get()

mt7981_sdk_get()
{
git clone https://github.com/gl-inet-builder/openwrt-sdk-mt7981.git openwrt-sdk
git clone --depth 1 https://github.com/gl-inet-builder/openwrt-sdk-mt7981.git openwrt-sdk
}


Expand Down

0 comments on commit 9a02a0f

Please sign in to comment.