Skip to content

Docker Image CI

Docker Image CI #407

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [master, ci]
schedule:
- cron: "0 9 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push cuda
uses: docker/build-push-action@v4
with:
context: .
file: ./cuda/Dockerfile
platforms: linux/amd64
push: true
tags: |
javydekoning/hashcat:cuda
ghcr.io/javydekoning/hashcat:cuda
- name: Build and push opencl
uses: docker/build-push-action@v4
with:
context: .
file: ./opencl/Dockerfile
platforms: linux/amd64
push: true
tags: |
javydekoning/hashcat:opencl
ghcr.io/javydekoning/hashcat:opencl