Skip to content

Commit

Permalink
added xcframework generation to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bryce-b committed Jun 3, 2024
1 parent f977095 commit de9913d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/xcframework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Generate tvOS Framework provenance
uses: actions/attest-build-provenance@173725a1209d09b31f9d30a3890cf2757ebbff0d # v1.1.2
with:
subject-path: "./dist/ElasticApm_tvOS-${{ APP_VERSION }}.tar.gz"
subject-path: "./dist/ElasticApm_tvOS-*.tar.gz"
# - name: Generate iOS Framework provenance
# uses: actions/attest-build-provenance@173725a1209d09b31f9d30a3890cf2757ebbff0d # v1.1.2
# env:
Expand All @@ -95,16 +95,16 @@ jobs:
# subject-path: "${{ github.workspace }}/build/ElasticApm_macOS-${APP_VERSION}.tar.gz"
- uses: actions/upload-artifact@v4
with:
name: ElasticAPM_macOS-${APP_VERSION}.tar.gz
name: ElasticAPM_macOS-${{ env.APP_VERSION }}.tar.gz
path: |
dist/ElasticAPM_macOS-${APP_VERSION}.tar.gz
dist/ElasticAPM_macOS-${{ env.APP_VERSION }}.tar.gz
- uses: actions/upload-artifact@v4
with:
name: ElasticAPM_tvOS-${APP_VERSION}.tar.gz
name: ElasticAPM_tvOS-*.tar.gz
path: |
dist/ElasticAPM_tvOS-${APP_VERSION}.tar.gz
dist/ElasticAPM_tvOS-*.tar.gz
- uses: actions/upload-artifact@v4
with:
name: ElasticAPM_iOS-${APP_VERSION}.tar.gz
name: ElasticAPM_iOS-.tar.gz
path: |
dist/ElasticAPM_iOS-${APP_VERSION}.tar.gz

0 comments on commit de9913d

Please sign in to comment.