Skip to content

Commit

Permalink
fix: modify publish ci job to not use cached docker layers
Browse files Browse the repository at this point in the history
  • Loading branch information
seansica committed Sep 20, 2024
1 parent f8d4a9f commit 4e95535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Build and publish Docker image
run: |
echo $GITHUB_TOKEN | docker login ghcr.io -u mitre-attack --password-stdin
docker build . --tag ghcr.io/mitre-attack/attack-workbench-taxii-server:${TAG:-latest}
docker build --no-cache --tag ghcr.io/mitre-attack/attack-workbench-taxii-server:${TAG:-latest} .
docker push ghcr.io/mitre-attack/attack-workbench-taxii-server:${TAG:-latest}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 4e95535

Please sign in to comment.