diff --git a/.github/workflows/create_artifacts.yml b/.github/workflows/create_artifacts.yml index d352b9d82..e94b59a2d 100644 --- a/.github/workflows/create_artifacts.yml +++ b/.github/workflows/create_artifacts.yml @@ -14,11 +14,5 @@ jobs: - name: Upload releases uses: actions/upload-artifact@v3 with: - name: Releases ${{ github.ref_name }} + name: cScripts_DevBuild_${{ github.ref_name }}-$(git rev-parse --short HEAD) path: release/* - - - name: Upload release debug only - uses: actions/upload-artifact@v3 - with: - name: cScripts_Debug-DevBuild_${{ github.ref_name }}-$(git rev-parse --short HEAD) - path: release/cScripts_Debug-DevBuild_${{ github.ref_name }}-$(git rev-parse --short HEAD).zip diff --git a/.github/workflows/deploy_artifacts_main.yml b/.github/workflows/deploy_artifacts_main.yml index caed80007..427a4799a 100644 --- a/.github/workflows/deploy_artifacts_main.yml +++ b/.github/workflows/deploy_artifacts_main.yml @@ -17,11 +17,5 @@ jobs: - name: Upload releases uses: actions/upload-artifact@v3 with: - name: Releases - path: release/* - - - name: Upload release debug only - uses: actions/upload-artifact@v3 - with: - name: cScripts_Debug-$(git rev-parse --short HEAD) - path: release/cScripts_Debug-$(git rev-parse --short HEAD).zip + name: cScripts_DevBuild-$(git rev-parse --short HEAD) + path: release/* \ No newline at end of file diff --git a/.github/workflows/deploy_artifacts_tag.yml b/.github/workflows/deploy_artifacts_tag.yml index 94915f4eb..949bfbdb8 100644 --- a/.github/workflows/deploy_artifacts_tag.yml +++ b/.github/workflows/deploy_artifacts_tag.yml @@ -17,11 +17,5 @@ jobs: - name: Upload releases uses: actions/upload-artifact@v3 with: - name: Releases ${{github.ref_name}} - path: release/* - - - name: Upload release debug only - uses: actions/upload-artifact@v3 - with: - name: cScripts_Debug-${{github.ref_name}} - path: release/cScripts_Debug-${{github.ref_name}}.zip + name: cScripts-$(git rev-parse --short HEAD) + path: release/* \ No newline at end of file