We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9edbcf1 commit e02a0efCopy full SHA for e02a0ef
.github/workflows/build.yaml
@@ -82,10 +82,15 @@ jobs:
82
run: |
83
make compile-native-image project_dir=${{ github.workspace }} jar_path=aidbox-sdk.jar image_name=aidbox-sdk-${{ matrix.os }}
84
chmod +x aidbox-sdk-${{ matrix.os }}
85
- zip aidbox-sdk-${{ matrix.os }}.zip aidbox-sdk-${{ matrix.os }}
+
86
+ if [[ "${{ matrix.os }}" == "macos-latest" || "${{ matrix.os }}" == "ubuntu-latest" ]]; then
87
+ zip aidbox-sdk-${{ matrix.os }}.zip aidbox-sdk-${{ matrix.os }}
88
+ fi
89
90
- name: Upload amd64 binary artifact
91
uses: actions/upload-artifact@v4
92
with:
93
name: build-${{ matrix.os }}
- path: ./aidbox-sdk-*.zip
94
+ path: |
95
+ ./aidbox-sdk-*.zip
96
+ ./aidbox-sdk-${{ matrix.os }}.exe
0 commit comments