Skip to content

Commit c868940

Browse files
committed
fix(ci): incorrect env var name
1 parent c67e5ff commit c868940

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Process new plugins
88
runs-on: ubuntu-latest
99
steps:
10-
- name: Checkout extensions
10+
- name: Checkout plugins
1111
uses: actions/checkout@v3
1212
- name: Checkout dist
1313
uses: actions/checkout@v3
@@ -43,7 +43,7 @@ jobs:
4343
PLUGIN_RUNNER_PATH: ${{ github.workspace }}/runner
4444
PLUGIN_WORK_PATH: ${{ github.workspace }}/work
4545
run: |
46-
cd $EXT_RUNNER_PATH
46+
cd $PLUGIN_RUNNER_PATH
4747
bun run runner
4848
cd ${{ github.workspace }}
4949

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
PLUGIN_RUNNER_PATH: ${{ github.workspace }}/runner
4747
PLUGIN_WORK_PATH: ${{ github.workspace }}/work
4848
run: |
49-
cd $EXT_RUNNER_PATH
49+
cd $PLUGIN_RUNNER_PATH
5050
bun run runner
5151
cd ${{ github.workspace }}
5252

0 commit comments

Comments
 (0)