Skip to content

Commit

Permalink
fix secret error
Browse files Browse the repository at this point in the history
  • Loading branch information
wuwentao committed Jun 27, 2024
1 parent c798959 commit 493242d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
ls -alht
rm -rf k230_linux_sdk
echo "set github proxy"
git config --global https.proxy ${GH_PROXY}
git config --global https.proxy ${{ secrets.GH_PROXY }}
git clone --depth=0 --branch=${PR_BRANCH} https://github.com/${PR_REPO} k230_linux_sdk || git clone --depth=0 --branch=${PR_BRANCH} https://github.com/${PR_REPO} k230_linux_sdk
cd k230_linux_sdk
git fetch origin ${PR_BRANCH}:${PR_BRANCH} || exit 1
Expand All @@ -94,7 +94,7 @@ jobs:
run: |
pwd
echo "----------start to build linux sdk image----------"
time make CONF=${CONF} BR2_PRIMARY_SITE=${DL_SITE} || exit 1
time make CONF=${CONF} BR2_PRIMARY_SITE=${{ secrets.DL_SITE }} || exit 1
echo "----------show linux sdk image build output----------"
pwd
du -h -d 2 output/${CONF}/ || exit 1
Expand Down

0 comments on commit 493242d

Please sign in to comment.