Skip to content

Commit

Permalink
Revert "fix gh artifacts upload for docker images" (#2606)
Browse files Browse the repository at this point in the history
Revert "fix gh artifacts upload for docker images (#2562)"

This reverts commit 1fa73fa.
  • Loading branch information
moukoublen authored Oct 15, 2024
1 parent 1fa73fa commit 4015c3d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/actions/docker-images/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ inputs:
docker-build-cache-folder:
description: 'Docker build cache folder'
required: false
default: /tmp/.buildx-cache
default: '/tmp/.buildx-cache'
docker-images-folder:
description: 'Docker build cache folder'
required: false
default: /tmp/.docker-images
default: '/tmp/.docker-images'

goos:
description: 'GOOS environment variable'
Expand Down Expand Up @@ -123,7 +123,8 @@ runs:
- if: ${{ inputs.build-docker-images == 'true' }}
name: Upload docker images
uses: actions/upload-artifact@v4
# Pin action version to 4.3.4 See https://github.com/actions/upload-artifact/issues/589
uses: actions/upload-artifact@v4.3.4
with:
name: docker-images
path: ${{ inputs.docker-images-folder }}
Expand Down

0 comments on commit 4015c3d

Please sign in to comment.