We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b684df commit d698ef7Copy full SHA for d698ef7
1 file changed
.github/workflows/create_release.yaml
@@ -67,7 +67,7 @@ jobs:
67
if: ${{ matrix.target_os == 'Windows' }}
68
run: mkdir -p ${{ env.PUBLISH_DIR }} && powershell Compress-Archive -Path ${{ env.OUTPUT_DIR }} -DestinationPath ${{ env.PUBLISH_DIR }}/${{ matrix.target_os }}.zip
69
- name: compress files (Linux, MacOS)
70
- if: ${{ matrix.target_os == 'macOS' || matrix.target_os == 'Linux' | matrix.target_os == 'iOS' }}
+ if: ${{ matrix.target_os == 'macOS' || matrix.target_os == 'Linux' || matrix.target_os == 'iOS' }}
71
run: mkdir -p ${{ env.PUBLISH_DIR }} && zip -r ${{ env.PUBLISH_DIR }}/${{ matrix.target_os }}.zip ${{ env.OUTPUT_DIR }}
72
73
- name: upload artifact
0 commit comments