Skip to content

Commit

Permalink
feat: build docker image without cache (#13)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejo Thomas Ortega <[email protected]>
  • Loading branch information
aleortega authored Jan 24, 2024
1 parent 70fe8c8 commit 9b86928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ jobs:
- name: Build and push
id: docker_build
run: |
docker build --build-arg COMMIT_HASH=${{ github.sha }} --build-arg VULKAN_DLL_PATH=./vulkan-sdt/1.3.268.0/runtime/x64/vulkan-1.dll -t quay.io/decentraland/lods-generator:next -t quay.io/decentraland/lods-generator:${{ github.sha }} .
docker build --no-cache --build-arg COMMIT_HASH=${{ github.sha }} --build-arg VULKAN_DLL_PATH=./vulkan-sdt/1.3.268.0/runtime/x64/vulkan-1.dll -t quay.io/decentraland/lods-generator:next -t quay.io/decentraland/lods-generator:${{ github.sha }} .
docker push quay.io/decentraland/lods-generator:next
docker push quay.io/decentraland/lods-generator:${{ github.sha }}

0 comments on commit 9b86928

Please sign in to comment.