Skip to content

Commit

Permalink
Add build workflow (fix issue #35)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhansenbot committed Sep 5, 2024
1 parent 333a1f6 commit 78a3771
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run the build.sh scripts
run: |
# find the build.sh scripts and execute them
echo "Running all build.sh scripts in repo"
for f in $(find . -iname 'build.sh')
do
$f || exit 1
done
echo "Done running build.sh scripts"

0 comments on commit 78a3771

Please sign in to comment.