Skip to content

Commit

Permalink
refactor: use reusable actions for build
Browse files Browse the repository at this point in the history
  • Loading branch information
lmoesle committed Aug 24, 2023
1 parent 905734a commit d77869a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Build

on:
push:
pull_request:
types: [opened, reopened]

jobs:
services:
uses: ./.github/workflows/build/build-services.yaml
secrets: inherit

apps:
uses: ./.github/workflows/build/build-apps.yaml
secrets: inherit
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: build apps

on:
workflow_call:
push:
branches:
- '**'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: build services

on:
workflow_call:
push:
pull_request:
types: [opened, reopened]
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -397,3 +397,6 @@ gradle-app.setting
/docs/node/

digiwf-schema-registry/digiwf-schema-registry-client/.openapi-generator-ignore

# Allow build folder for github actions
!.github/workflows/build

0 comments on commit d77869a

Please sign in to comment.