Skip to content

Commit e6d8cdf

Browse files
committed
Fix release builds for universal-apple-darwin
1 parent 8e8da13 commit e6d8cdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ jobs:
413413
run: |
414414
for PLUGIN in ${{env.PLUGINS}}; do
415415
# It's important to change into the plugin directory and building each package
416-
cd "${{ github.workspace }}/plugins/$PLUGIN"
416+
cd "${{ github.workspace }}/plugins/$PLUGIN/crates/plugin"
417417
cargo deb -p reactive-graph-${{env.PLUGIN_REPOSITORY}}-$PLUGIN --target=${{ matrix.target }} --deb-revision ${{steps.tag.outputs.tag}}
418418
done
419419
env:
@@ -423,7 +423,7 @@ jobs:
423423
run: |
424424
for PLUGIN in ${{env.PLUGINS}}; do
425425
# It's important to change into the plugin directory and building each package
426-
cd "${{ github.workspace }}/plugins/$PLUGIN"
426+
cd "${{ github.workspace }}/plugins/$PLUGIN/crates/plugin"
427427
cargo deb -p reactive-graph-${{env.PLUGIN_REPOSITORY}}-$PLUGIN --target=${{ matrix.target }} --deb-revision nightly
428428
done
429429
env:

0 commit comments

Comments
 (0)