Skip to content

Commit

Permalink
Fix artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
chippmann committed Apr 18, 2024
1 parent c50b548 commit d31f3f3
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,25 @@ jobs:

- name: Build editor debug (target=editor, debug_symbols=true )
cache-name: editor_linux_x86_64
artifact-name: editor_debug_linux_x86_64
target: editor
sconsflags: debug_symbols=true

- name: Build editor dev (target=editor, dev_build=yes, debug_symbols=true )
cache-name: editor_linux_x86_64
artifact-name: editor_dev_linux_x86_64
target: editor
sconsflags: dev_build=yes debug_symbols=true

- name: Build release template x86_64
cache-name: export_template_linux_x86_64
artifact-name: export_template_release_linux_x86_64
target: template_release
sconsflags: ''

- name: Build debug template x86_64
cache-name: export_template_linux_x86_64
artifact-name: export_template_debug_linux_x86_64
target: template_debug
sconsflags: ''

Expand Down Expand Up @@ -79,4 +83,4 @@ jobs:
- name: Upload artifact
uses: ./.github/actions/upload-artifact
with:
name: ${{ matrix.cache-name }}
name: ${{ matrix.export_template_debug_macos_arm64 }}
12 changes: 11 additions & 1 deletion .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,51 +19,61 @@ jobs:
include:
- name: Build editor release x86_64 (target=editor)
cache-name: editor_macos_x86_64
artifact-name: editor_release_macos_x86_64
target: editor
sconsflags: arch=x86_64

- name: Build editor debug x86_64 (target=editor, debug_symbols=true )
cache-name: editor_macos_x86_64
artifact-name: editor_debug_macos_x86_64
target: editor
sconsflags: arch=x86_64 debug_symbols=true

- name: Build editor dev x86_64 (target=editor, dev_build=yes, debug_symbols=true )
cache-name: editor_macos_x86_64
artifact-name: editor_dev_macos_x86_64
target: editor
sconsflags: arch=x86_64 dev_build=yes debug_symbols=true

- name: Build release template x86_64
cache-name: export_template_macos_x86_64
artifact-name: export_template_release_macos_x86_64
target: template_release
sconsflags: arch=x86_64

- name: Build debug template x86_64
cache-name: export_template_macos_x86_64
artifact-name: export_template_debug_macos_x86_64
target: template_debug
sconsflags: arch=x86_64

- name: Build editor release arm64 (target=editor)
cache-name: editor_macos_arm64
artifact-name: editor_release_macos_arm64
target: editor
sconsflags: arch=arm64

- name: Build editor debug arm64 (target=editor, debug_symbols=true )
cache-name: editor_macos_arm64
artifact-name: editor_debug_macos_arm64
target: editor
sconsflags: arch=arm64 debug_symbols=true

- name: Build editor dev arm64 (target=editor, dev_build=yes, debug_symbols=true )
cache-name: editor_macos_arm64
artifact-name: editor_dev_macos_arm64
target: editor
sconsflags: arch=arm64 dev_build=yes debug_symbols=true

- name: Build release template arm64
cache-name: export_template_macos_arm64
artifact-name: export_template_release_macos_arm64
target: template_release
sconsflags: arch=arm64

- name: Build debug template arm64
cache-name: export_template_macos_arm64
artifact-name: export_template_debug_macos_arm64
target: template_debug
sconsflags: arch=arm64

Expand Down Expand Up @@ -115,4 +125,4 @@ jobs:
- name: Upload artifact
uses: ./.github/actions/upload-artifact
with:
name: ${{ matrix.cache-name }}
name: ${{ matrix.export_template_debug_macos_arm64 }}
7 changes: 6 additions & 1 deletion .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,35 @@ jobs:
include:
- name: Build editor release (target=editor)
cache-name: editor_windows_x86_64
artifact-name: editor_release_windows_x86_64
target: editor
should-clean: true
sconsflags: ''

- name: Build editor debug (target=editor, debug_symbols=true )
cache-name: editor_windows_x86_64
artifact-name: editor_debug_windows_x86_64
target: editor
should-clean: false
sconsflags: debug_symbols=true

- name: Build editor dev (target=editor, dev_build=yes, debug_symbols=true )
cache-name: editor_windows_x86_64
artifact-name: editor_dev_windows_x86_64
target: editor
should-clean: false
sconsflags: dev_build=yes debug_symbols=true

- name: Build release template
cache-name: export_template_windows_x86_64
artifact-name: export_template_release_windows_x86_64
target: template_release
should-clean: true
sconsflags: ''

- name: Build debug template
cache-name: export_template_windows_x86_64
artifact-name: export_template_debug_windows_x86_64
target: template_debug
should-clean: false
sconsflags: ''
Expand Down Expand Up @@ -94,4 +99,4 @@ jobs:
- name: Upload artifact
uses: ./.github/actions/upload-artifact
with:
name: ${{ matrix.cache-name }}
name: ${{ matrix.artifact-name }}

0 comments on commit d31f3f3

Please sign in to comment.