Skip to content

Commit 0205a70

Browse files
authored
Merge pull request #2 from rust-mcp-stack/chore/rlease-dist-image-runner
chore: update custom runner for cargo dist
2 parents 9535dd4 + e3e10f5 commit 0205a70

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on:
4242
pull_request:
4343
push:
4444
tags:
45-
- "**[0-9]+.[0-9]+.[0-9]+*"
45+
- '**[0-9]+.[0-9]+.[0-9]+*'
4646

4747
jobs:
4848
# Run 'dist plan' (or host) to determine what tasks we need to do

dist-workspace.toml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@ ci = "github"
1212
# The installers to generate for each app
1313
installers = ["shell", "powershell", "homebrew", "msi"]
1414
# Target platforms to build apps for (Rust target-triple syntax)
15-
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
15+
targets = [
16+
"aarch64-apple-darwin",
17+
"aarch64-unknown-linux-gnu",
18+
"x86_64-apple-darwin",
19+
"x86_64-unknown-linux-gnu",
20+
"x86_64-pc-windows-msvc",
21+
]
1622
# The archive format to use for non-windows builds (defaults .tar.xz)
1723
unix-archive = ".tar.gz"
1824
# Whether to install an updater program
@@ -26,10 +32,10 @@ publish-jobs = ["homebrew"]
2632

2733

2834
[dist.github-custom-runners]
29-
runner = "ubuntu-22.04"
35+
global = "ubuntu-22.04"
3036

31-
[dist.github-custom-runners.x86_64-unknown-linux-gnu]
32-
runner = "ubuntu-22.04"
37+
# [dist.github-custom-runners.x86_64-unknown-linux-gnu]
38+
# global = "ubuntu-22.04"
3339

3440
# [package]
3541
# homepage = "https://rust-mcp-stack.github.io/rust-mcp-filesystem"

0 commit comments

Comments
 (0)