Skip to content

Commit 8128136

Browse files
committed
Separate build commands again
Apparently this prevents caching for some reason
1 parent 350b35a commit 8128136

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build-workspace.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,17 @@ jobs:
119119
with:
120120
workspaces: ${{ env.FAST_WORKSPACE }}
121121

122-
- name: Build packages
122+
- name: Build GUI
123+
run: cargo build --release -p gui
124+
working-directory: ${{ env.FAST_WORKSPACE }}
125+
126+
- name: Build OpenFX plugin
127+
run: cargo xtask build-ofx-plugin --release
128+
working-directory: ${{ env.FAST_WORKSPACE }}
129+
130+
- name: Build After Effects plugin
123131
run: |
124-
cargo build --release -p gui -p openfx-plugin -p ae-plugin
132+
cargo build --release -p ae-plugin
125133
cp target\release\ae_plugin.dll .\ntsc-rs-ae.aex
126134
working-directory: ${{ env.FAST_WORKSPACE }}
127135

0 commit comments

Comments
 (0)