Skip to content

Commit

Permalink
nevermind, run build step in the actoin
Browse files Browse the repository at this point in the history
  • Loading branch information
mashehu authored and MillironX committed Jan 12, 2025
1 parent f0d2a7e commit 6959be8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ runs:
using: "composite"
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
shell: bash
run: npm ci
- name: Build
shell: bash
run: npm run package
- uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b
with:
java-version: ${{ inputs.java-version }}
Expand Down
2 changes: 1 addition & 1 deletion subaction/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
default: false
runs:
using: "node20"
main: "../src/main.ts"
main: "../dist/index.js"
branding:
icon: "shuffle"
color: "green"

0 comments on commit 6959be8

Please sign in to comment.