From dcacebdc785dcb769577974c02213b542d259066 Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Mon, 26 Aug 2024 22:19:50 +0900 Subject: [PATCH 1/2] Fix workflow to build packages before publishing --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e02cbce..8f7be25 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -82,6 +82,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: ./.github/actions/install-dependencies + - name: Build package + run: yarn run compile - uses: ./.github/actions/publish-package with: working-directory: ./packages/core From cc8be173f21db4ac974efd2bc89f7be2f210a3f7 Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Mon, 26 Aug 2024 22:22:54 +0900 Subject: [PATCH 2/2] Update versions --- package.json | 2 +- packages/core/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0f139e4..56cd149 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ ], "repository": "https://github.com/jcam1/sdks.git", "license": "MIT", - "version": "1.4.0", + "version": "1.5.0", "engines": { "node": "^20.12.0", "yarn": "^1.22.22" diff --git a/packages/core/package.json b/packages/core/package.json index 8f0ee25..6b48284 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,7 @@ "description": "Core SDK for JPYC protocol", "repository": "https://github.com/jcam1/sdks.git", "license": "MIT", - "version": "1.2.0", + "version": "1.3.0", "publishConfig": { "access": "public" },