Skip to content

Commit 7741001

Browse files
authoredSep 24, 2023
Merge pull request #1 from wtto00/dev
fix: CI error leads to missing necessary packaging files
2 parents 76f2745 + 6de996b commit 7741001

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed
 

‎.github/workflows/test-publish.yml

+6
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ jobs:
9696
- name: Install Dependencies
9797
run: pnpm install --no-frozen-lockfile
9898

99+
- name: Build
100+
run: pnpm build
101+
99102
- run: npm pkg set publishConfig.registry=https://npm.pkg.github.com
100103
- run: npm publish
101104
env:
@@ -128,6 +131,9 @@ jobs:
128131
- name: Install Dependencies
129132
run: pnpm install --no-frozen-lockfile
130133

134+
- name: Build
135+
run: pnpm build
136+
131137
- run: git config --global user.name "GitHub CD bot"
132138
- run: git config --global user.email "github-cd-bot@example.com"
133139
- run: npm publish --access public

‎README-ZH_CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# android-tools
22

3-
[![Test](https://github.com/wtto00/android-tools/actions/workflows/test.yml/badge.svg)](https://github.com/wtto00/android-tools/actions/workflows/test.yml)
3+
[![Test](https://github.com/wtto00/android-tools/actions/workflows/test-publish.yml/badge.svg)](https://github.com/wtto00/android-tools/actions/workflows/test-publish.yml)
44

55
使用 Nodejs 控制管理 Andorid 设备。
66

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# android-tools
22

3-
[![Test](https://github.com/wtto00/android-tools/actions/workflows/test.yml/badge.svg)](https://github.com/wtto00/android-tools/actions/workflows/test.yml)
3+
[![Test](https://github.com/wtto00/android-tools/actions/workflows/test-publish.yml/badge.svg)](https://github.com/wtto00/android-tools/actions/workflows/test-publish.yml)
44

55
Node module for managing and controlling the Android Devices.
66

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wtto00/android-tools",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Node module for managing and controlling the Android Devices.",
55
"type": "module",
66
"main": "dist/lib/index.js",

0 commit comments

Comments
 (0)
Please sign in to comment.