action: update

This commit is contained in:
xiaorouji
2024-11-19 00:23:53 +08:00
parent ccd216da0b
commit 6399abb0da
2 changed files with 13 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
name: 功能请求
description: 为此项目提出关于新功能的想法
name: Feature Requests
description: Propose new feature ideas for this project.
title: "[Feature Request]: "
labels: enhancement
@@ -7,31 +7,31 @@ body:
- type: textarea
id: description
attributes:
label: 描述你想要的新功能
description: 尽可能简单清晰地描述你想要的新功能或是希望解决的问题
label: Describe the new feature you want
description: Describe the new feature you want or the problem you want solved as simply and clearly as possible.
validations:
required: true
- type: textarea
id: ideal-solution
attributes:
label: 描述你想要的解决方案
description: 尽可能简单清晰地描述你想要的新功能
label: Describe the solution you want
description: Describe the new feature you want as simply and clearly as possible.
validations:
required: true
- type: textarea
id: other-solutions
attributes:
label: 描述你考虑过的替代方案
description: 尽可能简单清晰地描述你考虑过的任何替代解决方案或功能
label: Describe the alternatives you considered
description: Describe any alternative solutions or features you considered as simply and clearly as possible.
validations:
required: false
- type: textarea
id: supplements
attributes:
label: 其他信息
description: 在此处添加有关功能请求的任何其他信息或屏幕截图
label: Other Information
description: Add any other information or screenshots about your feature request here.
validations:
required: false

View File

@@ -124,7 +124,7 @@ jobs:
./scripts/feeds update -a
echo "CONFIG_PACKAGE_luci-app-passwall2=m" > .config
./scripts/feeds install -d n luci-app-passwall2
make package/luci-app-passwall2/download -j8 || make package/luci-app-passwall2/download -j1
make package/luci-app-passwall2/download -j1
- name: Update passwall2 feeds
if: steps.cache-sdk.outputs.cache-hit == 'true'
@@ -296,7 +296,7 @@ jobs:
- name: ${{ matrix.platform }} download
run: |
cd sdk
make download -j8
make download -j1
find dl -size -1024c -exec ls -l {} \;
- name: ${{ matrix.platform }} compile
@@ -305,7 +305,7 @@ jobs:
cd sdk
for package in $(ls feeds/passwall_packages); do
if [ -d "feeds/passwall_packages/$package" ]; then
make package/feeds/passwall_packages/$package/compile -j$(nproc) 2>/dev/null || make package/feeds/passwall_packages/$package/compile -j1 2>/dev/null
make package/feeds/passwall_packages/$package/compile -j1 2>/dev/null
fi
done