We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bd40db commit b3b9f13Copy full SHA for b3b9f13
.github/workflows/lf-build-windows-x86_64.yml
@@ -37,7 +37,10 @@ jobs:
37
shell: 'bash'
38
run: |
39
echo "LFMP_ARCH=x86_64" >> $GITHUB_ENV
40
- echo "LFMP_COMPILE_PLUGINS=${{ github.event.inputs.compile-plugins }}" >> $GITHUB_ENV
+ PLUGS="${{ github.event.inputs.compile-plugins }}"
41
+ # accept either "a b c" or "a,b,c"
42
+ PLUGS="${PLUGS//,/ }"
43
+ echo "LFMP_COMPILE_PLUGINS=$PLUGS" >> $GITHUB_ENV
44
echo "LFMP_PACKAGE_ITERATION=${{ github.event.inputs.package-iteration }}" >> $GITHUB_ENV
45
echo "LFMP_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV
46
# echo "LFMP_TARGET_DISTROS=${{ github.event.inputs.target-distros }}" >> $GITHUB_ENV
0 commit comments