Skip to content

Commit ab9f56f

Browse files
committed
chore(release): update version to 2.3.0-rc.4
1 parent e1d509a commit ab9f56f

File tree

214 files changed

+1748
-362
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+1748
-362
lines changed

.github/workflows/publish.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
sha: ${{ steps.ctx.outputs.sha }}
5858
latest: ${{ steps.ctx.outputs.latest }}
5959
pr_number: ${{ steps.ctx.outputs.pr_number }}
60-
is_fork: ${{ steps.ctx.outputs.is_fork }}
60+
is_fork: ${{ steps.fork.outputs.is_fork }}
6161
steps:
6262
- uses: actions/checkout@v4
6363
with:
@@ -368,6 +368,7 @@ jobs:
368368
[rivet-engine-aarch64-unknown-linux-musl]=linux-arm64-musl
369369
[rivet-engine-x86_64-apple-darwin]=darwin-x64
370370
[rivet-engine-aarch64-apple-darwin]=darwin-arm64
371+
[rivet-engine-x86_64-pc-windows-gnu.exe]=win32-x64
371372
)
372373
for f in engine-artifacts/rivet-engine-*; do
373374
[ -e "$f" ] || continue
@@ -382,9 +383,14 @@ jobs:
382383
echo "Missing engine-cli platform dir: $dest" >&2
383384
exit 1
384385
fi
385-
cp "$f" "$dest/rivet-engine"
386-
chmod +x "$dest/rivet-engine"
387-
echo "Placed $filename -> npm/${platform}/rivet-engine"
386+
if [ "$platform" = "win32-x64" ]; then
387+
cp "$f" "$dest/rivet-engine.exe"
388+
echo "Placed $filename -> npm/${platform}/rivet-engine.exe"
389+
else
390+
cp "$f" "$dest/rivet-engine"
391+
chmod +x "$dest/rivet-engine"
392+
echo "Placed $filename -> npm/${platform}/rivet-engine"
393+
fi
388394
done
389395
390396
- name: Bump package versions for build

0 commit comments

Comments
 (0)