Skip to content

Commit

Permalink
fix(Action): docker buildx not setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Yimura committed Feb 15, 2024
1 parent e619cd2 commit 2d438af
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
name: Checkout source
uses: actions/checkout@v3

-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

-
name: Build dependency
uses: docker/build-push-action@v5
Expand All @@ -34,7 +38,8 @@ jobs:
ADD_WORDLIST_N_RULES=true
outputs: type=docker,dest=/tmp/${{ matrix.image }}.tar

- name: Upload dependency
-
name: Upload dependency
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.image }}
Expand All @@ -53,22 +58,30 @@ jobs:
name: Checkout source
uses: actions/checkout@v3

- name: Download hashcat dependency
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

-
name: Download hashcat dependency
uses: actions/download-artifact@v3
with:
name: hashcat
path: /tmp

- name: Download wordlists dependency
-
name: Download wordlists dependency
uses: actions/download-artifact@v3
with:
name: wordlists
path: /tmp

- name: Load hashcat dependecy
-
name: Load hashcat dependecy
run: docker load --input /tmp/hashcat.tar

- name: Load wordlists dependecy
-
name: Load wordlists dependecy
run: docker load --input /tmp/wordlists.tar

-
Expand Down

0 comments on commit 2d438af

Please sign in to comment.