Skip to content

Changes to get solvers working #1

Changes to get solvers working

Changes to get solvers working #1

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "VEP-preliminary-implementation" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Exact branch name
run: echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PWORD }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: true
file: ./Dockerfile
platforms: linux/amd64
# see https://github.com/docker/build-push-action/issues/276 for syntax help
tags: julesg/underworld3:${{ env.BRANCH }}
#-$(date +%s)