Skip to content
This repository has been archived by the owner on Nov 25, 2023. It is now read-only.

First commit

First commit #1

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --tag aureleoules/mutation-worker:latest
- name: Push the Docker image
run: docker push aureleoules/mutation-worker:latest