File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848 echo "version=$VERSION" >> $GITHUB_OUTPUT
4949
5050 - name : workaround for https://github.com/sensuikan1973/libedax4dart/issues/828
51- if : ${{ matrix.target_os }} == 'Windows'
51+ if : ${{ matrix.target_os == 'Windows' }}
5252 shell : bash
5353 run : git config --system core.longpaths true
5454
@@ -64,10 +64,10 @@ jobs:
6464 run : .github/scripts/output_build_info.sh ${{ env.OUTPUT_DIR }}
6565
6666 - name : compress files (Windows)
67- if : ${{ matrix.target_os }} == 'Windows'
67+ if : ${{ matrix.target_os == 'Windows' }}
6868 run : mkdir -p ${{ env.PUBLISH_DIR }} && powershell Compress-Archive -Path ${{ env.OUTPUT_DIR }} -DestinationPath ${{ env.PUBLISH_DIR }}/${{ matrix.target_os }}.zip
6969 - name : compress files (Linux, MacOS)
70- if : ${{ matrix.target_os }} == 'macOS' || ${{ matrix.target_os }} == 'Linux'
70+ if : ${{ matrix.target_os == 'macOS' || matrix.target_os == 'Linux' }}
7171 run : mkdir -p ${{ env.PUBLISH_DIR }} && zip -r ${{ env.PUBLISH_DIR }}/${{ matrix.target_os }}.zip ${{ env.OUTPUT_DIR }}
7272
7373 - name : upload artifact
You can’t perform that action at this time.
0 commit comments