Skip to content

Commit 970053e

Browse files
committed
may fix
1 parent 917756c commit 970053e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/create_release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
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

0 commit comments

Comments
 (0)