Skip to content

Adding github actions build script. #1

Adding github actions build script.

Adding github actions build script. #1

Workflow file for this run

name: Main
on:
push:
paths-ignore:
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build Docker image
id: build
run: docker build . -t dvfdocker/owlcms4:latest
shell: bash
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3