Skip to content

Commit 1fb81da

Browse files
fix: skip-deps condition check
1 parent b2d607e commit 1fb81da

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ runs:
9999
using: 'composite'
100100
steps:
101101
- name: Prepare blocklet cli deps
102-
if: ${{ inputs.skip-deps != 'true' || inputs.skip-abtnode != 'true' }}
102+
if: ${{ inputs.skip-deps != 'true' && inputs.skip-abtnode != 'true' }}
103103
run: |
104104
if ${{inputs.deps-npm-client == 'pnpm'}} ; then pnpm install -g @blocklet/cli@${{ inputs.deps-server-version}}; elif ${{ inputs.deps-npm-client == 'yarn' }} ; then yarn global add @blocklet/cli@${{ inputs.deps-server-version}}; else npm install -g @blocklet/cli@${{ inputs.deps-server-version}} ; fi
105105
shell: bash

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "action-workflow",
3-
"version": "0.3.8",
3+
"version": "0.3.9",
44
"description": "Github action for develop blocklet workflow",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)