From 34a3be297ecc2fc8164363c9a681dc8c1c1b2955 Mon Sep 17 00:00:00 2001 From: Robert Field Date: Wed, 25 Oct 2023 17:57:44 +0200 Subject: [PATCH] build: add build back (#98) * build: add build step to release * chore: changeset --- .changeset/hungry-lemons-study.md | 8 ++++++++ .github/workflows/release.yml | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 .changeset/hungry-lemons-study.md diff --git a/.changeset/hungry-lemons-study.md b/.changeset/hungry-lemons-study.md new file mode 100644 index 00000000..fd71d83e --- /dev/null +++ b/.changeset/hungry-lemons-study.md @@ -0,0 +1,8 @@ +--- +"@elasticpath/composable-common": patch +"@elasticpath/composable-integration-hub-deployer": patch +"@elasticpath/react-shopper-hooks": patch +"@elasticpath/shopper-common": patch +--- + +missing build output corrected diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eb436098..3db90965 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,6 +34,9 @@ jobs: - name: Install Dependencies run: pnpm install --frozen-lockfile + - name: Build Packages + run: pnpm build:packages + - name: Create Release Pull Request or Publish to npm id: changesets uses: changesets/action@v1