Skip to content

Commit

Permalink
Fix unchanged allocator artifact conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
Enaraque committed Nov 6, 2024
1 parent 18e89d4 commit 2be5e0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Test_installation_assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,12 @@ jobs:
- name: Compress Allocator VM directory
id: compress_allocator_files
if: always() && steps.allocator_instance.outcome == 'success' && (inputs.DESTROY == false && github.event_name != 'pull_request')
if: always() && steps.allocator_instance.outcome == 'success' && inputs.DESTROY == false && github.event_name != 'pull_request'
run: |
zip -P "${{ secrets.ZIP_ARTIFACTS_PASSWORD }}" -r $ALLOCATOR_PATH.zip $ALLOCATOR_PATH
- name: Upload Allocator VM directory as artifact
if: always() && steps.compress_allocator_files.outcome == 'success' && (inputs.DESTROY == false && github.event_name != 'pull_request')
if: always() && steps.compress_allocator_files.outcome == 'success' && inputs.DESTROY == false && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: allocator-instance-${{ matrix.system }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Test_installation_assistant_distributed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,12 +292,12 @@ jobs:
- name: Compress Allocator VM directory
id: compress_allocator_files
if: always() && steps.allocator_instance.outcome == 'success' && (inputs.DESTROY == false || github.event_name == 'pull_request')
if: always() && steps.allocator_instance.outcome == 'success' && inputs.DESTROY == false && github.event_name != 'pull_request'
run: |
zip -P "${{ secrets.ZIP_ARTIFACTS_PASSWORD }}" -r $ALLOCATOR_PATH.zip $ALLOCATOR_PATH
- name: Upload Allocator VM directory as artifact
if: always() && steps.compress_allocator_files.outcome == 'success' && (inputs.DESTROY == false || github.event_name == 'pull_request')
if: always() && steps.compress_allocator_files.outcome == 'success' && inputs.DESTROY == false && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: allocator-instance-${{ matrix.system }}
Expand Down

0 comments on commit 2be5e0a

Please sign in to comment.