Skip to content

Commit 9f6f167

Browse files
Merge pull request #35 from jcam1/develop
Release 2024-08-26 17:19:31 +0900
2 parents 03917da + f360705 commit 9f6f167

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.github/actions/publish-package/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ inputs:
44
node-auth-token:
55
description: 'node token for authorization'
66
required: true
7+
working-directory:
8+
description: 'working directory'
9+
required: true
710

811
runs:
912
using: composite
1013
steps:
1114
- name: Publish package
12-
run: yarn publish
15+
run: yarn publish --cwd ${{ inputs.working-directory }}
1316
shell: bash
1417
env:
1518
NODE_AUTH_TOKEN: ${{ inputs.node-auth-token }}

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ jobs:
8484
- uses: ./.github/actions/install-dependencies
8585
- uses: ./.github/actions/publish-package
8686
with:
87+
working-directory: ./packages/core
8788
node-auth-token: ${{ secrets.NPM_TOKEN }}
8889

8990
publish-v1:
@@ -99,4 +100,5 @@ jobs:
99100
- uses: ./.github/actions/install-dependencies
100101
- uses: ./.github/actions/publish-package
101102
with:
103+
working-directory: ./packages/v1
102104
node-auth-token: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
],
88
"repository": "https://github.com/jcam1/sdks.git",
99
"license": "MIT",
10-
"version": "1.1.0",
10+
"version": "1.2.0",
1111
"engines": {
1212
"node": "^20.12.0",
1313
"yarn": "^1.22.22"

packages/core/README-ja.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/v1/README-ja.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)