Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/build-temporal-core-artifacts.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Build Temporal Core SDK artifacts

permissions:
contents: read
contents: write

on:
workflow_dispatch:
Expand Down Expand Up @@ -536,6 +536,8 @@ jobs:
assemble-bundle:
name: Assemble artifact bundle
runs-on: ubuntu-latest
# Running on a nightly container since we need https://github.com/swiftlang/swift-package-manager/pull/9360 & https://github.com/swiftlang/swift-package-manager/pull/9359
container: swiftlang/swift:nightly-main
needs: [setup, build-macos, build-linux-x86, build-linux-arm, build-linux-musl-x86, build-linux-musl-arm]
steps:
- name: Checkout repository
Expand Down Expand Up @@ -749,6 +751,12 @@ jobs:
}
EOF

- name: Validate artifact bundle
run: |
echo "🔍 Validating artifact bundle with Swift Package Manager..."
swift package experimental-audit-binary-artifact "${{ env.ARTIFACT_BUNDLE_NAME }}"
echo "✅ Artifact bundle validation passed"

- name: Create archive
run: |
zip -r "${{ env.ARTIFACT_BUNDLE_NAME }}.zip" "${{ env.ARTIFACT_BUNDLE_NAME }}"
Expand Down
Loading