Skip to content

Commit

Permalink
add artifacts prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
YZ775 committed Aug 16, 2024
1 parent 2e7e5f9 commit 5c42f1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/actions/e2e/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ inputs:
k8s-version:
description: 'K8s version'
required: true
name:
description: 'Name of the action'
required: true
runs:
using: "composite"
steps:
Expand Down Expand Up @@ -36,5 +39,5 @@ runs:
- uses: actions/upload-artifact@v4
if: always()
with:
name: logs-${{ inputs.k8s-version }}-${{ inputs.mysql-version }}.tar.gz
name: logs-${{inputs.name}}-${{ inputs.k8s-version }}-${{ inputs.mysql-version }}.tar.gz
path: e2e/logs.tar.gz
2 changes: 2 additions & 0 deletions .github/workflows/ci-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
with:
k8s-version: ${{ matrix.k8s-version }}
mysql-version: ${{ matrix.mysql-version }}
name: k8s-version-e2e
if: steps.changed-files.outputs.any_changed == 'true'

e2e-mysql:
Expand All @@ -81,6 +82,7 @@ jobs:
with:
k8s-version: ${{ matrix.k8s-version }}
mysql-version: ${{ matrix.mysql-version }}
name: mysql-version-e2e

upgrade:
name: Upgrade Test
Expand Down

0 comments on commit 5c42f1f

Please sign in to comment.