Skip to content

Commit

Permalink
Adding github actions build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
renemadsen committed Mar 31, 2024
1 parent b828011 commit a7d9ee5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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

0 comments on commit a7d9ee5

Please sign in to comment.