Skip to content

Commit

Permalink
fix: Writing file to a different path
Browse files Browse the repository at this point in the history
  • Loading branch information
zeitlerc committed Nov 25, 2024
1 parent 5a32247 commit 41f0212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ jobs:
- name: Docker Build
run: |
docker build --file Dockerfile.windows --build-arg BASE_IMAGE_TAG=${{ matrix.baseImageTag }} -t nri-kubernetes:windows-${{ matrix.baseImageTag }} .
docker save nri-kubernetes:windows-${{ matrix.baseImageTag }} > /tmp/nri-kubernetes-${{ matrix.baseImageTag }}.tar
docker save nri-kubernetes:windows-${{ matrix.baseImageTag }} > nri-kubernetes-${{ matrix.baseImageTag }}.tar
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: nri-kubernetes-${{ matrix.baseImageTag }}
path: /tmp/nri-kubernetes-${{ matrix.baseImageTag }}.tar
path: nri-kubernetes-${{ matrix.baseImageTag }}.tar

chart-lint:
name: Helm chart Lint
Expand Down

0 comments on commit 41f0212

Please sign in to comment.