Skip to content
This repository has been archived by the owner on Jul 18, 2024. It is now read-only.

archive prep

archive prep #7

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to dockerhub
uses: docker/login-action@v1
with:
username: ${{ secrets.HUB_DOCKER_USERNAME }}
password: ${{ secrets.HUB_DOCKER_PAT }}
- name: run makefile
run: make gh-build
shell: bash