We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 350b35a commit 8128136Copy full SHA for 8128136
.github/workflows/build-workspace.yml
@@ -119,9 +119,17 @@ jobs:
119
with:
120
workspaces: ${{ env.FAST_WORKSPACE }}
121
122
- - name: Build packages
+ - 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
129
130
+ - name: Build After Effects plugin
131
run: |
- cargo build --release -p gui -p openfx-plugin -p ae-plugin
132
+ cargo build --release -p ae-plugin
133
cp target\release\ae_plugin.dll .\ntsc-rs-ae.aex
134
working-directory: ${{ env.FAST_WORKSPACE }}
135
0 commit comments