Skip to content

Commit

Permalink
docker build workflow - add no-cache param
Browse files Browse the repository at this point in the history
  • Loading branch information
tariqksoliman committed Oct 4, 2023
1 parent 2de964c commit d6b2bdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login -u ${{ github.actor }} --password-stdin ghcr.io

- name: Docker build
run: docker build ${{ steps.generate.outputs.REGISTRY_TAGS }} .
run: docker build --no-cache ${{ steps.generate.outputs.REGISTRY_TAGS }} .

- name: Docker push
run: docker push ${{ steps.generate.outputs.IMAGE_ID }} --all-tags

0 comments on commit d6b2bdc

Please sign in to comment.