separate symbols again

This commit is contained in:
Serhii Snitsaruk 2024-12-18 11:25:01 +01:00
parent 12f94db55a
commit e9d538ef47
No known key found for this signature in database
GPG Key ID: A965EF8799FFEC2D
1 changed files with 18 additions and 16 deletions

View File

@ -396,16 +396,19 @@ jobs:
name: tmp-gdextension.${{matrix.opts.platform}}.${{matrix.opts.target}}.${{matrix.opts.arch}}
path: |
out/*
!out/**/*.debug
!out/**/*.pdb
!out/**/*.dSYM
# - name: Upload debug symbols
# if: matrix.opts.debug-symbols
# uses: actions/upload-artifact@v4
# with:
# name: tmp-gdextension-symbols.${{matrix.opts.platform}}.${{matrix.opts.target}}.${{matrix.opts.arch}}
# path: |
# out/**/*.debug
# out/**/*.pdb
# out/**/*.dSYM
- name: Upload debug symbols
if: matrix.opts.debug-symbols
uses: actions/upload-artifact@v4
with:
name: tmp-gdextension-symbols.${{matrix.opts.platform}}.${{matrix.opts.target}}.${{matrix.opts.arch}}
path: |
out/**/*.debug
out/**/*.pdb
out/**/*.dSYM
package-extension:
name: 📦 Package extension
@ -420,13 +423,12 @@ jobs:
pattern: tmp-gdextension.*
delete-merged: true
# - name: Merge debug symbols artifacts
# if: inputs.debug-symbols
# uses: actions/upload-artifact/merge@v4
# with:
# name: ${{needs.gdextension.outputs.name-prefix}}.debug-symbols
# pattern: tmp-gdextension-symbols.*
# delete-merged: true
- name: Merge debug symbols artifacts
uses: actions/upload-artifact/merge@v4
with:
name: ${{needs.gdextension.outputs.name-prefix}}.debug-symbols
pattern: tmp-gdextension-symbols.*
delete-merged: true
- name: Download artifact
uses: actions/download-artifact@v4