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