From 6a4e353bde8b867e64ffd162a5f0baede7199b3c Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Thu, 10 Jul 2025 11:35:11 -0500 Subject: [PATCH] Add dSYM file generation for DataDog --- .github/workflows/macos-dSYM.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/macos-dSYM.yml diff --git a/.github/workflows/macos-dSYM.yml b/.github/workflows/macos-dSYM.yml new file mode 100644 index 00000000..cb490792 --- /dev/null +++ b/.github/workflows/macos-dSYM.yml @@ -0,0 +1,21 @@ +name: Upload dSYM Files + +jobs: + build: + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Generate/Download dSYM Files + uses: ./release.sh + + - name: Upload dSYMs to Datadog + uses: DataDog/upload-dsyms-github-action@v1 + with: + api_key: ${{ secrets.DATADOG_API_KEY }} + site: datadoghq.com + dsym_paths: | + path/to/dsyms/folder + path/to/zip/dsyms.zip \ No newline at end of file