Skip to content

Commit

Permalink
Merge pull request #49 from costateixeira/add-workflows
Browse files Browse the repository at this point in the history
Add build workflows
  • Loading branch information
litlfred authored Sep 10, 2024
2 parents b85564d + 67efff2 commit 0979790
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/fhirbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This workflow reuses the WHO GitHub action for triggering the FHIR CI build upon every commit or on request

name: FHIR CI Build

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events for any main branch
push:
branches-ignore:
- 'gh-pages'
pull_request:

workflow_dispatch:

jobs:
# This workflow contains a single job called "build"
call_build:
uses: WorldHealthOrganization/smart-base/.github/workflows/fhirbuild.yml@main
23 changes: 23 additions & 0 deletions .github/workflows/ghbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This workflow reuses the openHIE GitHub action for building IGs
# Initial idea by Carl Leitner
# Change log:
# v0.1.0
# 2021-06-18: publish default branches to / , other branches branches/<branch>
# 2021-11-26: reusable workflow

name: GitHub Pages build

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events for any main branch
push:
branches-ignore:
- 'gh-pages'
pull_request:

workflow_dispatch:

jobs:
# This workflow contains a single job called "build"
call_build:
uses: WorldHealthOrganization/smart-base/.github/workflows/ghbuild.yml@main

0 comments on commit 0979790

Please sign in to comment.