We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0639f65 commit 7447f91Copy full SHA for 7447f91
1 file changed
.github/workflows/all.yml
@@ -79,16 +79,16 @@ jobs:
79
- name: One Step
80
run: |
81
82
- local platform=${{ inputs.platform }}
83
- local dryrun=${{ inputs.dryrun }}
+ Platform=${{ inputs.platform }}
+ DryRun=${{ inputs.dryrun }}
84
85
compile_lib() {
86
local lib_name=$1
87
88
- echo "------compile $platform $lib_name------------------------------------"
+ echo "------compile $Platform $lib_name------------------------------------"
89
rm -rf build || git reset --hard || git pull origin
90
- .github/workflows/install-dependencies.sh $lib_name $platform # 补全依赖安装步骤
91
- .github/workflows/onestep.sh $lib_name $platform $dryrun
+ .github/workflows/install-dependencies.sh $lib_name $Platform # 补全依赖安装步骤
+ .github/workflows/onestep.sh $lib_name $platform $DryRun
92
}
93
94
libs=(
0 commit comments