Skip to content

Commit

Permalink
Separate
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn authored Dec 6, 2024
1 parent e2bad2c commit 835998d
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,15 +198,36 @@ jobs:
bundle exec fastlane windows upload_s3 exe:${{ env.ARTIFACT_PATHNAME }}
- name: 📮 Upload debug symbols
uses: actions/upload-artifact@v4
with:
name: debug-symbols
path: "${{ env.CMAKE_BUILD_DIR }}"
# if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags/v') && env.ARTIFACT_NAME != null

upload_debug_symbols:
name: upload debug symbols (windows)
runs-on: windows-2022
needs: build
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: debug-symbols

- name: 💎 Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Sentry upload
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG_SLUG: opengisch
SENTRY_PROJECT_SLUG: qfield
SENTRY_LOG_LEVEL: debug
run: |
tasklist /FO TABLE /NH
bundle exec fastlane run sentry_debug_files_upload path:${{ env.CMAKE_BUILD_DIR }}
bundle exec fastlane run sentry_debug_files_upload path:.
deploy:
name: deploy (ms store)
Expand Down

0 comments on commit 835998d

Please sign in to comment.