From 8cfd663c2a8d1fd5de42440548d79c79f7967a5d Mon Sep 17 00:00:00 2001 From: Mo Lawson Date: Tue, 26 Mar 2024 13:07:30 -0500 Subject: [PATCH] Use balto-utils NCC workflow to build dist Building the distribution file that's actually used when this workflow is referenced has been manual until now (and the current release's dist/ is out of sync with src/). But balto-utils has a workflow we can use to automate that. Using the default setup for that workflow and hopefully it works! --- .github/workflows/build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6144490 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,14 @@ +name: build +on: + push: + # Can't push a build commit to a tag, so only run for branches + branches: + - '**' + paths: + # Include any files that could require rebuilding + - 'package-lock.json' + - 'src/**' + +jobs: + ncc-build: + uses: planningcenter/balto-utils/.github/workflows/ncc.yml@v2