Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
cjlhll authored Jan 6, 2025
1 parent 04cef7b commit aa6fac8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/download-custom-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ jobs:
# 4. 创建 packages 文件夹(如果不存在的话)
- name: Create packages directory
run: |
mkdir -p ./packages
mkdir -p ./packages/base
# 5. 解压文件到 packages 目录
- name: Extract tarball to packages directory
run: |
tar -zxvf mihomo_x86_64-openwrt-23.05.tar.gz -C ./packages
tar -zxvf mihomo_x86_64-openwrt-23.05.tar.gz -C ./packages/base
# 6. 提交并推送更改(如果有)
- name: Commit and push changes
run: |
git config --local user.name "GitHub Actions Bot"
git config --local user.email "actions@github.com"
git add ./packages
git add ./packages/base
git commit -m "Add extracted files to packages directory" || echo "No changes to commit"
git push

0 comments on commit aa6fac8

Please sign in to comment.