Skip to content

Commit 57089ed

Browse files
committed
⚗️ Test publish
1 parent 3410f32 commit 57089ed

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/nodejs.yml

+12
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,24 @@ jobs:
5555
publish:
5656
runs-on: ubuntu-latest
5757
if: startsWith(github.ref, 'refs/tags/')
58+
needs:
59+
- build
5860
steps:
61+
- uses: actions/checkout@v4
5962
- uses: actions/download-artifact@v4
6063
with:
6164
pattern: artifact-*
6265
merge-multiple: true
6366
path: prebuilds
67+
- uses: actions/setup-node@v4
68+
with:
69+
node-version: latest
70+
registry-url: https://registry.npmjs.org
71+
cache: 'npm'
72+
- name: Build
73+
run: |
74+
npm install
75+
npm pack
6476
- uses: softprops/action-gh-release@v2
6577
with:
6678
files: '*.tgz'

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xmake-build-system",
3-
"version": "2.9.7",
3+
"version": "2.9.6",
44
"description": "A cross-platform build utility based on Lua",
55
"repository": "https://github.com/xmake-io/xmake-wheel",
66
"homepage": "https://github.com/xmake-io/xmake-wheel#readme",

0 commit comments

Comments
 (0)