Skip to content

Commit 238b181

Browse files
committed
chore: update dist version
1 parent 63392d3 commit 238b181

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
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
@@ -63,7 +63,7 @@ jobs:
6363
# we specify bash to get pipefail; it guards against the `curl` command
6464
# failing. otherwise `sh` won't catch that `curl` returned non-0
6565
shell: bash
66-
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.27.0/cargo-dist-installer.sh | sh"
66+
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.28.0/cargo-dist-installer.sh | sh"
6767
- name: Cache dist
6868
uses: actions/upload-artifact@v4
6969
with:

dist-workspace.toml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,15 @@ members = ["cargo:."]
44
# Config for 'dist'
55
[dist]
66
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
7-
cargo-dist-version = "0.27.0"
7+
cargo-dist-version = "0.28.0"
88
# CI backends to support
99
ci = "github"
1010
# The installers to generate for each app
1111
installers = ["shell", "powershell", "npm", "homebrew", "msi"]
1212
# A GitHub repo to push Homebrew formulas to
1313
tap = "nik-rev/homebrew-tap"
1414
# Target platforms to build apps for (Rust target-triple syntax)
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-unknown-linux-musl",
21-
"x86_64-pc-windows-msvc",
22-
]
15+
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
2316
# A namespace to use when publishing this package to the npm registry
2417
npm-scope = "@nikitarevenco"
2518
# Path that installers should place binaries in

0 commit comments

Comments
 (0)