From 84ea9569f3abc61af0d53f560c912586a52da625 Mon Sep 17 00:00:00 2001 From: Boshen Date: Wed, 19 Jul 2023 12:56:32 +0800 Subject: [PATCH] Release @oxidation-compiler/napi v0.1.0 --- .github/workflows/release_napi.yml | 3 +-- npm/napi/package.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_napi.yml b/.github/workflows/release_napi.yml index 16a10feae3740b..42ffd57665032d 100644 --- a/.github/workflows/release_napi.yml +++ b/.github/workflows/release_napi.yml @@ -16,7 +16,6 @@ concurrency: jobs: check: name: Check version - if: github.event.workflow_run.conclusion == 'success' runs-on: ubuntu-latest outputs: version: ${{ env.version }} @@ -40,7 +39,7 @@ jobs: build: needs: check - if: github.event.workflow_run.conclusion == 'success' && needs.check.outputs.version_changed == 'true' + if: needs.check.outputs.version_changed == 'true' env: version: ${{ needs.check.outputs.version }} outputs: diff --git a/npm/napi/package.json b/npm/napi/package.json index 353693d809463c..5b64e12c7a1daa 100644 --- a/npm/napi/package.json +++ b/npm/napi/package.json @@ -1,6 +1,6 @@ { "name": "@oxidation-compiler/napi", - "version": "0.0.3", + "version": "0.1.0", "description": "The JavaScript Oxidation Compiler Node API", "main": "index.js", "author": "Boshen and oxc contributors",