Skip to content

Commit

Permalink
Prune builder.
Browse files Browse the repository at this point in the history
  • Loading branch information
amit-catio committed Sep 21, 2024
1 parent 140072d commit 06ec9fb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
id: vars
run: echo "GIT_COMMIT_SHA=$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_ENV
- name: Build steampipe-plugin-aws docker image
run: docker build . --file Dockerfile --no-cache --progress=plain --tag ${{ env.REPO_NAME }}:${{ env.GIT_COMMIT_SHA }}
run: |
docker builder prune -f
docker build . --file Dockerfile --no-cache --progress=plain --tag ${{ env.REPO_NAME }}:${{ env.GIT_COMMIT_SHA }}
- name: Tag steampipe-plugin-aws docker image
run: docker tag ${{ env.REPO_NAME }}:${{ env.GIT_COMMIT_SHA }} ${{ env.AWS_ACCOUNT_ID }}.dkr.ecr.us-west-2.amazonaws.com/${{ env.REPO_NAME }}:${{ env.GIT_COMMIT_SHA }}
- name: Configure AWS credentials
Expand Down

0 comments on commit 06ec9fb

Please sign in to comment.