Skip to content

Commit

Permalink
chore: try republish package (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
wre232114 authored Feb 20, 2023
1 parent 8a3e25a commit 15396c9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,11 @@ jobs:
with:
name: ${{ github.sha }}-${{ matrix.settings.abi }}
path: ./packages/core/npm/${{ matrix.settings.abi }}
- name: List Files
run: ls -l ./packages/core/npm/${{ matrix.settings.abi }}

copy-artifacts-arm64:
name: Build and Upload Artifacts - darwin-arm64
name: Copy Artifacts - darwin-arm64
runs-on: ubuntu-latest
needs: call-rust-build
steps:
Expand All @@ -51,6 +53,8 @@ jobs:
with:
name: ${{ github.sha }}-darwin-arm64
path: ./packages/core/npm/darwin-arm64
- name: List Files
run: ls -l ./packages/core/npm/darwin-arm64

release:
name: Release
Expand Down
1 change: 1 addition & 0 deletions packages/core/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
access = public
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @farmfe/core

## 0.1.1

### Patch Changes

- Publish native optional dependencies

## 0.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farmfe/core",
"version": "0.1.0",
"version": "0.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
Expand Down Expand Up @@ -46,7 +46,7 @@
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"build:rs": "npm run build:rs:debug -- --release",
"build:rs:debug": "napi build --platform --cargo-name farmfe_node -p farmfe_node --cargo-cwd ../../ binding --js binding/binding.cjs --dts binding.d.ts",
"prepublishOnly": "napi prepublish -t npm && npm run build",
"prepublishOnly": "napi prepublish -t npm",
"version": "napi version",
"start": "tsc -w -p tsconfig.build.json",
"type-check": "tsc -p tsconfig.build.json --noEmit"
Expand Down

0 comments on commit 15396c9

Please sign in to comment.