Skip to content

Commit

Permalink
chore: fix parser path, electric trigaloo (III)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fevol committed Mar 6, 2024
1 parent e52ba94 commit 8b36b85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- "*" # Push events to matching any tag format, i.e. 1.0, 20.15.10

env:
PLUGIN_NAME: commentator # Change this to the name of your plugin-id folder
PLUGIN_NAME: commentator

jobs:
build:
Expand All @@ -19,14 +19,14 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "16.14" # You might need to adjust this value to your own version
node-version: "16.14"
- name: Build
id: build
run: |
cd ./src/editor/base/parser
npm i --force
npm run build --if-present
cd ../../..
cd ../../../..
npm i --force
npm run build --if-present
mkdir ${{ env.PLUGIN_NAME }}
Expand Down

0 comments on commit 8b36b85

Please sign in to comment.