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 b3b34f4 commit 5e9814cCopy full SHA for 5e9814c
.github/actions/build-and-test-sdk/action.yml
@@ -28,6 +28,11 @@ runs:
28
run: |
29
./test-sdk.sh ${{ inputs.swift-version }} ${{ inputs.distribution }} ${{ inputs.target-arch }} --static-swift-stdlib
30
cp test-project/.build/debug/hello-world artifacts/hello-world-static
31
+ - name: Test SDK with test-project (release)
32
+ shell: bash
33
+ run: |
34
+ BUILD_PROFILE=release ./test-sdk.sh ${{ inputs.swift-version }} ${{ inputs.distribution }} ${{ inputs.target-arch }}
35
+ cp test-project/.build/release/hello-world artifacts/hello-world-release
36
- uses: actions/upload-artifact@v4
37
name: Publish SDK
38
with:
0 commit comments