Skip to content

Commit

Permalink
fix gh artifacts upload with the latest action version
Browse files Browse the repository at this point in the history
  • Loading branch information
moukoublen committed Oct 14, 2024
1 parent 1fa73fa commit e660e1b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/docker-images/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ runs:
name: Rotate cache
shell: bash
run: |
ls -lahR /tmp/ || true
ls -lahR ${{ inputs.docker-images-folder }} || true
[[ -d ${{ inputs.docker-build-cache-folder }}-new ]] && rm -rf ${{ inputs.docker-build-cache-folder }} && mv ${{ inputs.docker-build-cache-folder }}-new ${{ inputs.docker-build-cache-folder }}
- if: ${{ inputs.build-docker-images == 'true' }}
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
# - main
# - "[0-9]+.[0-9]+"
# types: [opened, synchronize, reopened]
pull_request:
branches:
- main
- "[0-9]+.[0-9]+"
types: [opened, synchronize, reopened]
push:
branches:
- main
Expand Down Expand Up @@ -280,15 +285,15 @@ jobs:
uses: ./.github/actions/docker-images
with:
build-docker-images: 'false'
docker-images-folder: '/tmp/.docker-images'
docker-images-folder: ~/.docker-images

- name: Run k8s integration tests
uses: ./.github/actions/k8s-ci
with:
kind-config: ${{ matrix.kind-config }}
test-target: ${{ matrix.test-target }}
values-file: ${{ matrix.values-file }}
docker-images-folder: '/tmp/.docker-images'
docker-images-folder: ~/.docker-images

upload-allure-results:
needs:
Expand Down

0 comments on commit e660e1b

Please sign in to comment.