From cd344d4ac2e045556f33ff94f3365d53813cdae8 Mon Sep 17 00:00:00 2001 From: voylin <0voylin0@gmail.com> Date: Wed, 14 Aug 2024 10:19:41 +0900 Subject: [PATCH] More convenient artifact names This makes it easier in the way that you just extract the archives and they are directly in the correct folder. --- .../build_gdextension_linux_full_release.yml | 8 ++++---- .../workflows/build_gdextension_linux_release.yml | 8 ++++---- .../workflows/build_gdextension_windows_release.yml | 8 ++++---- .github/workflows/video_editor_build.yml | 12 ++++++------ 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/build_gdextension_linux_full_release.yml b/.github/workflows/build_gdextension_linux_full_release.yml index 4c601dc..bfd23d0 100644 --- a/.github/workflows/build_gdextension_linux_full_release.yml +++ b/.github/workflows/build_gdextension_linux_full_release.yml @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/build_gdextension_linux_release.yml b/.github/workflows/build_gdextension_linux_release.yml index ea45a20..f59411d 100644 --- a/.github/workflows/build_gdextension_linux_release.yml +++ b/.github/workflows/build_gdextension_linux_release.yml @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/build_gdextension_windows_release.yml b/.github/workflows/build_gdextension_windows_release.yml index d803c41..e8feca5 100644 --- a/.github/workflows/build_gdextension_windows_release.yml +++ b/.github/workflows/build_gdextension_windows_release.yml @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/video_editor_build.yml b/.github/workflows/video_editor_build.yml index 37308c8..21e19b6 100644 --- a/.github/workflows/video_editor_build.yml +++ b/.github/workflows/video_editor_build.yml @@ -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 @@ -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 @@ -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 @@ -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: @@ -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 @@ -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