create-conformal 0.12.0 → 0.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"commander": "^14.0.3"
|
|
7
7
|
},
|
|
8
8
|
"name": "create-conformal",
|
|
9
|
-
"version": "0.12.
|
|
9
|
+
"version": "0.12.1",
|
|
10
10
|
"description": "Project generator script for conformal projects",
|
|
11
11
|
"homepage": "https://russellmcc.github.io/conformal",
|
|
12
12
|
"bugs": "https://github.com/russellmcc/conformal/issues",
|
package/package.json.bak
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"commander": "^14.0.3"
|
|
7
7
|
},
|
|
8
8
|
"name": "create-conformal",
|
|
9
|
-
"version": "0.12.
|
|
9
|
+
"version": "0.12.1",
|
|
10
10
|
"description": "Project generator script for conformal projects",
|
|
11
11
|
"homepage": "https://russellmcc.github.io/conformal",
|
|
12
12
|
"bugs": "https://github.com/russellmcc/conformal/issues",
|
package/template/.gitattributes
CHANGED
|
@@ -20,14 +20,14 @@ runs:
|
|
|
20
20
|
id: vst3-cache
|
|
21
21
|
uses: actions/cache@v4
|
|
22
22
|
with:
|
|
23
|
-
path: /
|
|
23
|
+
path: $\{{ runner.temp }}/vst3sdk/vst3sdk
|
|
24
24
|
key: vst3-$\{{ runner.os }}-v3.8.0_build_66
|
|
25
25
|
|
|
26
26
|
- name: Set VST3_SDK_DIR from cache
|
|
27
27
|
if: steps.vst3-cache.outputs.cache-hit == 'true'
|
|
28
28
|
run: |
|
|
29
|
-
echo "VST3_SDK_DIR
|
|
30
|
-
echo "VST3_SDK_DIR
|
|
29
|
+
echo "VST3_SDK_DIR=$RUNNER_TEMP/vst3sdk" >> "$GITHUB_ENV"
|
|
30
|
+
echo "VST3_SDK_DIR=$RUNNER_TEMP/vst3sdk" >> .env
|
|
31
31
|
shell: bash
|
|
32
32
|
|
|
33
33
|
- run: bun run bootstrap-rust-toolchain --rust-version 1.93.1
|
|
@@ -43,7 +43,7 @@ runs:
|
|
|
43
43
|
if: steps.vst3-cache.outputs.cache-hit != 'true'
|
|
44
44
|
run: |
|
|
45
45
|
VST3_DIR=$(grep "^VST3_SDK_DIR=" .env 2>/dev/null | tail -1 | cut -d= -f2-)
|
|
46
|
-
if [ -n "$VST3_DIR" ] && [ -d "$VST3_DIR" ] && [ "$VST3_DIR" != "/
|
|
47
|
-
cp -r "$VST3_DIR" /
|
|
46
|
+
if [ -n "$VST3_DIR" ] && [ -d "$VST3_DIR" ] && [ "$VST3_DIR" != "$RUNNER_TEMP/vst3sdk" ]; then
|
|
47
|
+
cp -r "$VST3_DIR" $RUNNER_TEMP/vst3sdk
|
|
48
48
|
fi
|
|
49
49
|
shell: bash
|
|
@@ -7,7 +7,7 @@ on:
|
|
|
7
7
|
- "*"
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
|
-
ci:
|
|
10
|
+
ci-macos:
|
|
11
11
|
runs-on: macos-15
|
|
12
12
|
steps:
|
|
13
13
|
- uses: actions/checkout@v4
|
|
@@ -15,3 +15,11 @@ jobs:
|
|
|
15
15
|
lfs: "true"
|
|
16
16
|
- uses: ./.github/actions/bootstrap
|
|
17
17
|
- run: bun run ci
|
|
18
|
+
ci-windows:
|
|
19
|
+
runs-on: windows-2025
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v4
|
|
22
|
+
with:
|
|
23
|
+
lfs: "true"
|
|
24
|
+
- uses: ./.github/actions/bootstrap
|
|
25
|
+
- run: bun run ci
|