Skip to content

Commit

Permalink
fix some error
Browse files Browse the repository at this point in the history
  • Loading branch information
stxh committed Jan 1, 2025
1 parent 5c3bdce commit ee85215
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,28 +129,27 @@ runs:
shell: bash
# Setup and configure NodeJS
- name: Setup NodeJS
if: no-node == "false"
if: inputs.no-node == "false"
uses: actions/setup-node@v3
with:
node-version: ${{inputs.node-version}}
# (Optional) Setup and configure Deno
- name: Setup Deno
if: no-deno == "false"
if: inputs.no-deno == "false" && inputs.deno-build != ''
uses: denoland/setup-deno@v1
if: inputs.deno-build != ''
with:
deno-version: ${{inputs.deno-version}}
- name: Run Deno Command
if: no-deno == "false" && inputs.deno-build != ''
if: inputs.no-deno == "false" && inputs.deno-build != ''
shell: bash
working-directory: ${{inputs.deno-working-directory}}
run: ${{inputs.deno-build}}
# Setup Bun
- name: Setup Bun
if: no-bun == "false"
uses: oven-sh/setup-bun@v1 # Use the official setup-bun action
with:
bun-version: latest # Or a specific version like '1.0.0'
if: no-bun == "false"
uses: oven-sh/setup-bun@v1 # Use the official setup-bun action
with:
bun-version: latest # Or a specific version like '1.0.0'
# install wails
- name: Install Wails
if: inputs.build == 'true'
Expand Down

0 comments on commit ee85215

Please sign in to comment.