feat(wordlist/rules): Added OneRuleToRuleThemStill #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Push | |
on: | |
push: | |
# branches: | |
# - "master" | |
# paths: | |
# - "**/Dockerfile" | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build-dependencies: | |
name: Dependencies | |
strategy: | |
fail-fast: true | |
matrix: | |
image: [ wordlists, hashcat ] | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout source | |
uses: actions/checkout@v4 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: yimura | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- | |
name: Build dependency | |
uses: docker/build-push-action@v5 | |
with: | |
file: ${{ matrix.image }}/Dockerfile | |
push: true | |
tags: yimura/crackerjack-docker:${{ matrix.image }} | |
build-args: | | |
ADD_WORDLIST_N_RULES=true | |
build-container: | |
name: CPU & GPU | |
needs: [ build-dependencies ] | |
strategy: | |
fail-fast: true | |
matrix: | |
image: [ cpu, nvidia ] | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout source | |
uses: actions/checkout@v4 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to ghcr.io | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: yimura | |
password: ${{ secrets.PACKAGE_WRITE_TOKEN }} | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: yimura | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- | |
name: Build and push to Docker Hub | |
uses: docker/build-push-action@v5 | |
with: | |
file: ${{ matrix.image }}/Dockerfile | |
push: true | |
tags: yimura/crackerjack-docker:${{ matrix.image }} | |
- | |
name: Retag and push to Github Container Registry | |
run: | | |
docker buildx imagetools create --tag ghcr.io/yimura/crackerjack-docker:${{ matrix.image }} yimura/crackerjack-docker:${{ matrix.image }} |