Skip to content

Commit

Permalink
More convenient artifact names
Browse files Browse the repository at this point in the history
This makes it easier in the way that you just extract the archives and
they are directly in the correct folder.
  • Loading branch information
voylin committed Aug 14, 2024
1 parent 9d3f53e commit cd344d4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_gdextension_linux_full_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Uploading GDExtension artifact full debug video only
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-full-debug-video-only
name: linux_video_only_full_template_debug
path: bin/linux_video_only_full_template_debug

- name: Build Linux full Debug
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Uploading GDExtension artifact full debug
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-full-debug
name: linux_full_template_debug
path: bin/linux_full_template_debug

# RELEASE BUILDS
Expand All @@ -53,7 +53,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'release' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-full-release-video-only
name: linux_video_only_full_template_release
path: bin/linux_video_only_full_template_release

- name: Build Linux full Release
Expand All @@ -63,5 +63,5 @@ jobs:
if: ${{ github.event.inputs.build_target == 'release' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-full-release
name: linux_full_template_release
path: bin/linux_full_template_release
8 changes: 4 additions & 4 deletions .github/workflows/build_gdextension_linux_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'debug' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-debug-video-only
name: linux_video_only_template_debug
path: bin/linux_video_only_template_debug

- name: Build Linux Debug
Expand All @@ -44,7 +44,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'debug' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-debug
name: linux_template_debug
path: bin/linux_template_debug

# RELEASE builds
Expand All @@ -55,7 +55,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'release' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-release-video-only
name: linux_video_only_template_release
path: bin/linux_video_only_template_release

- name: Build Linux Release
Expand All @@ -65,5 +65,5 @@ jobs:
if: ${{ github.event.inputs.build_target == 'release' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-release
name: linux_template_release
path: bin/linux_template_release
8 changes: 4 additions & 4 deletions .github/workflows/build_gdextension_windows_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'debug' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-windows-debug-video_only
name: windows_video_only_template_debug
path: bin/windows_video_only_template_debug

- name: Build Windows Debug
Expand All @@ -44,7 +44,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'debug' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-windows-debug
name: windows_template_debug
path: bin/windows_template_debug

# RELEASE BUILDS
Expand All @@ -55,7 +55,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'release' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-windows-release-video-only
name: windows_video_only_template_release
path: bin/windows_video_only_template_release

- name: Build Windows Release
Expand All @@ -65,5 +65,5 @@ jobs:
if: ${{ github.event.inputs.build_target == 'release' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-windows-release
name: windows_template_release
path: bin/windows_template_release
12 changes: 6 additions & 6 deletions .github/workflows/video_editor_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'debug' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-debug
name: linux_template_debug
path: bin/linux_template_debug

- name: Building debug Linux full
Expand All @@ -54,7 +54,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'debug' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-full-debug
name: linux_template_debug_full
path: bin/linux_full_template_debug

# RELEASE BUILDS
Expand All @@ -65,7 +65,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'release' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-release
name: linux_template_release
path: bin/linux_template_release

- name: Building release Linux full
Expand All @@ -75,7 +75,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'release' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-linux-full-release
name: linux_template_release_full
path: bin/linux_full_template_release

windows-build:
Expand All @@ -100,7 +100,7 @@ jobs:
if: ${{ github.event.inputs.build_target == 'debug' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-windows-debug
name: windows_template_debug
path: bin/windows_template_debug

# RELEASE BUILD
Expand All @@ -112,5 +112,5 @@ jobs:
if: ${{ github.event.inputs.build_target == 'release' || github.event.inputs.build_target == 'both' }}
uses: actions/upload-artifact@v4
with:
name: gde_gozen-windows-release
name: windows_template_release
path: bin/windows_template_release

0 comments on commit cd344d4

Please sign in to comment.