Skip to content

Commit 43dd140

Browse files
committed
tests: add pkg to gallery
1 parent e5ba17f commit 43dd140

14 files changed

+752
-25
lines changed

cargo-dist/tests/integration-tests.rs

+58-13
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fn axolotlsay_basic() -> Result<(), miette::Report> {
3434
ctx.patch_cargo_toml(format!(r#"
3535
[workspace.metadata.dist]
3636
cargo-dist-version = "{dist_version}"
37-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
37+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
3838
tap = "axodotdev/homebrew-packages"
3939
publish-jobs = ["homebrew", "npm"]
4040
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
@@ -48,6 +48,9 @@ npm-scope ="@axodotdev"
4848
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
4949
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
5050
51+
[package.metadata.dist.mac-pkg-config]
52+
identifier = "dev.axo.axolotsay"
53+
5154
"#
5255
))?;
5356

@@ -71,7 +74,7 @@ fn axolotlsay_basic_lies() -> Result<(), miette::Report> {
7174
ctx.patch_cargo_toml(format!(r#"
7275
[workspace.metadata.dist]
7376
cargo-dist-version = "{dist_version}"
74-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
77+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
7578
tap = "axodotdev/homebrew-packages"
7679
publish-jobs = ["homebrew"]
7780
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
@@ -84,6 +87,10 @@ npm-scope ="@axodotdev"
8487
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
8588
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
8689
90+
[package.metadata.dist.mac-pkg-config]
91+
identifier = "dev.axo.axolotsay"
92+
install-location = "/opt/axolotlsay"
93+
8794
"#
8895
))?;
8996

@@ -148,7 +155,7 @@ fn axolotlsay_abyss() -> Result<(), miette::Report> {
148155
ctx.patch_cargo_toml(format!(r#"
149156
[workspace.metadata.dist]
150157
cargo-dist-version = "{dist_version}"
151-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
158+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
152159
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
153160
ci = ["github"]
154161
unix-archive = ".tar.gz"
@@ -161,6 +168,9 @@ github-attestations = true
161168
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
162169
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
163170
171+
[package.metadata.dist.mac-pkg-config]
172+
identifier = "dev.axo.axolotsay"
173+
164174
"#
165175
))?;
166176

@@ -185,7 +195,7 @@ fn axolotlsay_abyss_only() -> Result<(), miette::Report> {
185195
ctx.patch_cargo_toml(format!(r#"
186196
[workspace.metadata.dist]
187197
cargo-dist-version = "{dist_version}"
188-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
198+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
189199
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
190200
ci = ["github"]
191201
unix-archive = ".tar.gz"
@@ -197,6 +207,10 @@ hosting = ["axodotdev"]
197207
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
198208
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
199209
210+
[package.metadata.dist.mac-pkg-config]
211+
identifier = "dev.axo.axolotsay"
212+
install-location = "/opt/axolotlsay"
213+
200214
"#
201215
))?;
202216

@@ -461,7 +475,7 @@ fn axolotlsay_ssldotcom_windows_sign() -> Result<(), miette::Report> {
461475
ctx.patch_cargo_toml(format!(r#"
462476
[workspace.metadata.dist]
463477
cargo-dist-version = "{dist_version}"
464-
installers = ["shell", "powershell", "msi"]
478+
installers = ["shell", "powershell", "msi", "pkg"]
465479
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
466480
ci = ["github"]
467481
ssldotcom-windows-sign = "test"
@@ -472,6 +486,10 @@ windows-archive = ".tar.gz"
472486
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
473487
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
474488
489+
[package.metadata.dist.mac-pkg-config]
490+
identifier = "dev.axo.axolotsay"
491+
install-location = "/opt/axolotlsay"
492+
475493
"#
476494
))?;
477495

@@ -495,7 +513,7 @@ fn axolotlsay_ssldotcom_windows_sign_prod() -> Result<(), miette::Report> {
495513
ctx.patch_cargo_toml(format!(r#"
496514
[workspace.metadata.dist]
497515
cargo-dist-version = "{dist_version}"
498-
installers = ["shell", "powershell", "msi"]
516+
installers = ["shell", "powershell", "msi", "pkg"]
499517
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
500518
ci = ["github"]
501519
ssldotcom-windows-sign = "prod"
@@ -506,6 +524,10 @@ windows-archive = ".tar.gz"
506524
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
507525
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
508526
527+
[package.metadata.dist.mac-pkg-config]
528+
identifier = "dev.axo.axolotsay"
529+
install-location = "/opt/axolotlsay"
530+
509531
"#
510532
))?;
511533

@@ -787,7 +809,7 @@ fn axolotlsay_updaters() -> Result<(), miette::Report> {
787809
ctx.patch_cargo_toml(format!(r#"
788810
[workspace.metadata.dist]
789811
cargo-dist-version = "{dist_version}"
790-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
812+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
791813
tap = "axodotdev/homebrew-packages"
792814
publish-jobs = ["homebrew"]
793815
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
@@ -801,6 +823,9 @@ install-updater = true
801823
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
802824
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
803825
826+
[package.metadata.dist.mac-pkg-config]
827+
identifier = "dev.axo.axolotsay"
828+
804829
"#
805830
))?;
806831

@@ -826,7 +851,7 @@ fn axolotlsay_homebrew_packages() -> Result<(), miette::Report> {
826851
r#"
827852
[workspace.metadata.dist]
828853
cargo-dist-version = "{dist_version}"
829-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
854+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
830855
tap = "axodotdev/homebrew-packages"
831856
publish-jobs = ["homebrew"]
832857
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
@@ -839,6 +864,9 @@ npm-scope ="@axodotdev"
839864
"homebrew/cask/macfuse" = "*"
840865
libcue = "2.3.0"
841866
867+
[package.metadata.dist.mac-pkg-config]
868+
identifier = "dev.axo.axolotsay"
869+
842870
"#
843871
))?;
844872

@@ -862,7 +890,7 @@ fn axolotlsay_alias() -> Result<(), miette::Report> {
862890
ctx.patch_cargo_toml(format!(r#"
863891
[workspace.metadata.dist]
864892
cargo-dist-version = "{dist_version}"
865-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
893+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
866894
tap = "axodotdev/homebrew-packages"
867895
publish-jobs = ["homebrew"]
868896
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
@@ -878,6 +906,10 @@ path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
878906
[workspace.metadata.dist.bin-aliases]
879907
axolotlsay = ["axolotlsay-link"]
880908
909+
[package.metadata.dist.mac-pkg-config]
910+
identifier = "dev.axo.axolotsay"
911+
install-location = "/opt/axolotlsay"
912+
881913
"#
882914
))?;
883915

@@ -901,7 +933,7 @@ fn axolotlsay_several_aliases() -> Result<(), miette::Report> {
901933
ctx.patch_cargo_toml(format!(r#"
902934
[workspace.metadata.dist]
903935
cargo-dist-version = "{dist_version}"
904-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
936+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
905937
tap = "axodotdev/homebrew-packages"
906938
publish-jobs = ["homebrew"]
907939
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
@@ -917,6 +949,9 @@ path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
917949
[workspace.metadata.dist.bin-aliases]
918950
axolotlsay = ["axolotlsay-link1", "axolotlsay-link2"]
919951
952+
[package.metadata.dist.mac-pkg-config]
953+
identifier = "dev.axo.axolotsay"
954+
920955
"#
921956
))?;
922957

@@ -940,7 +975,7 @@ fn axolotlsay_alias_ignores_missing_bins() -> Result<(), miette::Report> {
940975
ctx.patch_cargo_toml(format!(r#"
941976
[workspace.metadata.dist]
942977
cargo-dist-version = "{dist_version}"
943-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
978+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
944979
tap = "axodotdev/homebrew-packages"
945980
publish-jobs = ["homebrew"]
946981
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
@@ -956,6 +991,9 @@ path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
956991
[workspace.metadata.dist.bin-aliases]
957992
nosuchbin = ["axolotlsay-link1", "axolotlsay-link2"]
958993
994+
[package.metadata.dist.mac-pkg-config]
995+
identifier = "dev.axo.axolotsay"
996+
959997
"#
960998
))?;
961999

@@ -1544,7 +1582,7 @@ fn axolotlsay_disable_source_tarball() -> Result<(), miette::Report> {
15441582
ctx.patch_cargo_toml(format!(r#"
15451583
[workspace.metadata.dist]
15461584
cargo-dist-version = "{dist_version}"
1547-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
1585+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
15481586
tap = "axodotdev/homebrew-packages"
15491587
publish-jobs = ["homebrew"]
15501588
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
@@ -1558,6 +1596,10 @@ source-tarball = false
15581596
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
15591597
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
15601598
1599+
[package.metadata.dist.mac-pkg-config]
1600+
identifier = "dev.axo.axolotsay"
1601+
install-location = "/opt/axolotlsay"
1602+
15611603
"#
15621604
))?;
15631605

@@ -1733,7 +1775,7 @@ fn axolotlsay_build_setup_steps() -> Result<(), miette::Report> {
17331775
ctx.patch_cargo_toml(format!(r#"
17341776
[workspace.metadata.dist]
17351777
cargo-dist-version = "{dist_version}"
1736-
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
1778+
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
17371779
tap = "axodotdev/homebrew-packages"
17381780
publish-jobs = ["homebrew", "npm"]
17391781
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
@@ -1748,6 +1790,9 @@ github-build-setup = "build_setup.yml"
17481790
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
17491791
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
17501792
1793+
[package.metadata.dist.mac-pkg-config]
1794+
identifier = "dev.axo.axolotsay"
1795+
17511796
"#
17521797
))?;
17531798

cargo-dist/tests/snapshots/axolotlsay_abyss.snap

+53-1
Original file line numberDiff line numberDiff line change
@@ -3140,7 +3140,7 @@ run("axolotlsay");
31403140
"announcement_is_prerelease": false,
31413141
"announcement_title": "Version 0.2.2",
31423142
"announcement_changelog": "```text\n +----------------------------------+\n | now with arm64 linux binaries!!! |\n +----------------------------------+\n /\n≽(◕ ᴗ ◕)≼\n```",
3143-
"announcement_github_body": "## Release Notes\n\n```text\n +----------------------------------+\n | now with arm64 linux binaries!!! |\n +----------------------------------+\n /\n≽(◕ ᴗ ◕)≼\n```\n\n## Install axolotlsay 0.2.2\n\n### Install prebuilt binaries via shell script\n\n```sh\ncurl --proto '=https' --tlsv1.2 -LsSf https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-installer.sh | sh\n```\n\n### Install prebuilt binaries via powershell script\n\n```sh\npowershell -ExecutionPolicy ByPass -c \"irm https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-installer.ps1 | iex\"\n```\n\n### Install prebuilt binaries via Homebrew\n\n```sh\nbrew install axolotlsay\n```\n\n### Install prebuilt binaries into your npm project\n\n```sh\nnpm install @axodotdev/[email protected]\n```\n\n## Download axolotlsay 0.2.2\n\n| File | Platform | Checksum |\n|--------|----------|----------|\n| [axolotlsay-aarch64-apple-darwin.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.tar.gz) | Apple Silicon macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.tar.gz.sha256) |\n| [axolotlsay-x86_64-apple-darwin.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.tar.gz) | Intel macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.tar.gz.sha256) |\n| [axolotlsay-x86_64-pc-windows-msvc.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.tar.gz) | x64 Windows | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.tar.gz.sha256) |\n| [axolotlsay-x86_64-pc-windows-msvc.msi](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.msi) | x64 Windows | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.msi.sha256) |\n| [axolotlsay-x86_64-unknown-linux-gnu.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-unknown-linux-gnu.tar.gz) | x64 Linux | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-unknown-linux-gnu.tar.gz.sha256) |\n\n## Verifying GitHub Artifact Attestations\n\nThe artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the [GitHub CLI](https://cli.github.com/manual/gh_attestation_verify):\n```sh\ngh attestation verify <file-path of downloaded artifact> --repo axodotdev/axolotlsay\n```\n\nYou can also download the attestation from [GitHub](https://github.com/axodotdev/axolotlsay/attestations) and verify against that directly:\n```sh\ngh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>\n```\n\n",
3143+
"announcement_github_body": "## Release Notes\n\n```text\n +----------------------------------+\n | now with arm64 linux binaries!!! |\n +----------------------------------+\n /\n≽(◕ ᴗ ◕)≼\n```\n\n## Install axolotlsay 0.2.2\n\n### Install prebuilt binaries via shell script\n\n```sh\ncurl --proto '=https' --tlsv1.2 -LsSf https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-installer.sh | sh\n```\n\n### Install prebuilt binaries via powershell script\n\n```sh\npowershell -ExecutionPolicy ByPass -c \"irm https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-installer.ps1 | iex\"\n```\n\n### Install prebuilt binaries via Homebrew\n\n```sh\nbrew install axolotlsay\n```\n\n### Install prebuilt binaries into your npm project\n\n```sh\nnpm install @axodotdev/[email protected]\n```\n\n## Download axolotlsay 0.2.2\n\n| File | Platform | Checksum |\n|--------|----------|----------|\n| [axolotlsay-aarch64-apple-darwin.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.tar.gz) | Apple Silicon macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.tar.gz.sha256) |\n| [axolotlsay-aarch64-apple-darwin.pkg](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.pkg) | Apple Silicon macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.pkg.sha256) |\n| [axolotlsay-x86_64-apple-darwin.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.tar.gz) | Intel macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.tar.gz.sha256) |\n| [axolotlsay-x86_64-apple-darwin.pkg](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.pkg) | Intel macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.pkg.sha256) |\n| [axolotlsay-x86_64-pc-windows-msvc.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.tar.gz) | x64 Windows | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.tar.gz.sha256) |\n| [axolotlsay-x86_64-pc-windows-msvc.msi](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.msi) | x64 Windows | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.msi.sha256) |\n| [axolotlsay-x86_64-unknown-linux-gnu.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-unknown-linux-gnu.tar.gz) | x64 Linux | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-unknown-linux-gnu.tar.gz.sha256) |\n\n## Verifying GitHub Artifact Attestations\n\nThe artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the [GitHub CLI](https://cli.github.com/manual/gh_attestation_verify):\n```sh\ngh attestation verify <file-path of downloaded artifact> --repo axodotdev/axolotlsay\n```\n\nYou can also download the attestation from [GitHub](https://github.com/axodotdev/axolotlsay/attestations) and verify against that directly:\n```sh\ngh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>\n```\n\n",
31443144
"releases": [
31453145
{
31463146
"app_name": "axolotlsay",
@@ -3155,8 +3155,12 @@ run("axolotlsay");
31553155
"axolotlsay-npm-package.tar.gz",
31563156
"axolotlsay-aarch64-apple-darwin.tar.gz",
31573157
"axolotlsay-aarch64-apple-darwin.tar.gz.sha256",
3158+
"axolotlsay-aarch64-apple-darwin.pkg",
3159+
"axolotlsay-aarch64-apple-darwin.pkg.sha256",
31583160
"axolotlsay-x86_64-apple-darwin.tar.gz",
31593161
"axolotlsay-x86_64-apple-darwin.tar.gz.sha256",
3162+
"axolotlsay-x86_64-apple-darwin.pkg",
3163+
"axolotlsay-x86_64-apple-darwin.pkg.sha256",
31603164
"axolotlsay-x86_64-pc-windows-msvc.tar.gz",
31613165
"axolotlsay-x86_64-pc-windows-msvc.tar.gz.sha256",
31623166
"axolotlsay-x86_64-pc-windows-msvc.msi",
@@ -3182,6 +3186,30 @@ run("axolotlsay");
31823186
}
31833187
],
31843188
"artifacts": {
3189+
"axolotlsay-aarch64-apple-darwin.pkg": {
3190+
"name": "axolotlsay-aarch64-apple-darwin.pkg",
3191+
"kind": "installer",
3192+
"target_triples": [
3193+
"aarch64-apple-darwin"
3194+
],
3195+
"assets": [
3196+
{
3197+
"id": "axolotlsay-aarch64-apple-darwin-exe-axolotlsay",
3198+
"name": "axolotlsay",
3199+
"path": "axolotlsay",
3200+
"kind": "executable"
3201+
}
3202+
],
3203+
"description": "install via pkg",
3204+
"checksum": "axolotlsay-aarch64-apple-darwin.pkg.sha256"
3205+
},
3206+
"axolotlsay-aarch64-apple-darwin.pkg.sha256": {
3207+
"name": "axolotlsay-aarch64-apple-darwin.pkg.sha256",
3208+
"kind": "checksum",
3209+
"target_triples": [
3210+
"aarch64-apple-darwin"
3211+
]
3212+
},
31853213
"axolotlsay-aarch64-apple-darwin.tar.gz": {
31863214
"name": "axolotlsay-aarch64-apple-darwin.tar.gz",
31873215
"kind": "executable-zip",
@@ -3318,6 +3346,30 @@ run("axolotlsay");
33183346
"install_hint": "npm install @axodotdev/[email protected]",
33193347
"description": "Install prebuilt binaries into your npm project"
33203348
},
3349+
"axolotlsay-x86_64-apple-darwin.pkg": {
3350+
"name": "axolotlsay-x86_64-apple-darwin.pkg",
3351+
"kind": "installer",
3352+
"target_triples": [
3353+
"x86_64-apple-darwin"
3354+
],
3355+
"assets": [
3356+
{
3357+
"id": "axolotlsay-x86_64-apple-darwin-exe-axolotlsay",
3358+
"name": "axolotlsay",
3359+
"path": "axolotlsay",
3360+
"kind": "executable"
3361+
}
3362+
],
3363+
"description": "install via pkg",
3364+
"checksum": "axolotlsay-x86_64-apple-darwin.pkg.sha256"
3365+
},
3366+
"axolotlsay-x86_64-apple-darwin.pkg.sha256": {
3367+
"name": "axolotlsay-x86_64-apple-darwin.pkg.sha256",
3368+
"kind": "checksum",
3369+
"target_triples": [
3370+
"x86_64-apple-darwin"
3371+
]
3372+
},
33213373
"axolotlsay-x86_64-apple-darwin.tar.gz": {
33223374
"name": "axolotlsay-x86_64-apple-darwin.tar.gz",
33233375
"kind": "executable-zip",

0 commit comments

Comments
 (0)