Skip to content

Commit

Permalink
fix test-packages download
Browse files Browse the repository at this point in the history
  • Loading branch information
reakaleek committed Sep 11, 2024
1 parent 86b54ac commit c9c3b34
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ on:
type: number
package-name:
description: "The artifact name with the binaries to be tested"
default: "package"
required: false
type: string

Expand Down Expand Up @@ -44,10 +43,18 @@ jobs:
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4
if: ${{ inputs.package-name }}
with:
name: ${{ inputs.package-name }}
path: ${{ env.BUILD_PACKAGES }}

- uses: actions/download-artifact@v4
if: ${{ ! intpus.package-name }}
with:
pattern: package-*
merge-multiple: true
path: ${{ env.BUILD_PACKAGES }}

- name: Log in to the Container registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
Expand Down

0 comments on commit c9c3b34

Please sign in to comment.