Skip to content

Commit

Permalink
1.0.67 Improve build resiliency
Browse files Browse the repository at this point in the history
  • Loading branch information
webpwnized committed Aug 15, 2024
1 parent fe8c71c commit b2270db
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-push-to-dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ jobs:
- name: Build and Load Container
uses: docker/build-push-action@master
with:
context: .build/${{ matrix.container_name }}/
file: Dockerfile
context: .
file: .build/${{ matrix.container_name }}/Dockerfile
load: true
tags: webpwnized/mutillidae:${{ matrix.container_name }}

Expand All @@ -108,15 +108,15 @@ jobs:
- name: Push Container
uses: docker/build-push-action@master
with:
context: .build/${{ matrix.container_name }}/
file: Dockerfile
context: .
file: .build/${{ matrix.container_name }}/Dockerfile
push: true
tags: webpwnized/mutillidae:${{ matrix.container_name }}

- name: Push Container with version number
uses: docker/build-push-action@master
with:
context: .build/${{ matrix.container_name }}/
file: Dockerfile
context: .
file: .build/${{ matrix.container_name }}/Dockerfile
push: true
tags: webpwnized/mutillidae:${{ matrix.container_name }}-${{ env.VERSION }}

0 comments on commit b2270db

Please sign in to comment.