Skip to content

Commit

Permalink
Added debug septate artifact release (#1082)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBrostrom authored Nov 27, 2023
1 parent 7404e63 commit a134aea
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/create_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,9 @@ jobs:
with:
name: Releases ${{ github.ref_name }}
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
6 changes: 6 additions & 0 deletions .github/workflows/deploy_artifacts_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,9 @@ jobs:
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
8 changes: 7 additions & 1 deletion .github/workflows/deploy_artifacts_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,11 @@ jobs:
- name: Upload releases
uses: actions/upload-artifact@v3
with:
name: Releases
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

0 comments on commit a134aea

Please sign in to comment.