Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bodsch committed Dec 12, 2021
1 parent a1bb470 commit 0ce0ce3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: build

on:
workflow_dispatch:
push:
branches: [ master ]
schedule:
# Build the image regularly (each Friday)
- cron: '23 04 * * 5'

jobs:
build:
name: Build
runs-on: "ubuntu-20.04"
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Build an image from Dockerfile
run: |
make

0 comments on commit 0ce0ce3

Please sign in to comment.