mirror of
https://github.com/Tilo-K/pastebin-cli.git
synced 2026-01-10 17:01:01 +00:00
Merge branch 'master' of https://github.com/Tilo-K/pastebin-cli into develop
This commit is contained in:
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -40,7 +40,7 @@ permissions:
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- '**[0-9]+.[0-9]+.[0-9]+*'
|
- '[0-9]+.[0-9]+.[0-9]+'
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -746,7 +746,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pastebin-cli"
|
name = "pastebin-cli"
|
||||||
version = "0.1.5"
|
version = "0.1.7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|||||||
11
Cargo.toml
11
Cargo.toml
@@ -1,12 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pastebin-cli"
|
name = "pastebin-cli"
|
||||||
version = "0.1.5"
|
version = "0.1.7"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A simple CLI for pastebin.com"
|
description = "A simple CLI for pastebin.com"
|
||||||
authors = ["Tilo K"]
|
authors = ["Tilo K"]
|
||||||
license = "AGPL-3.0-or-later"
|
license = "AGPL-3.0-or-later"
|
||||||
repository = "https://github.com/Tilo-K/pastebin-cli"
|
repository = "https://github.com/Tilo-K/pastebin-cli"
|
||||||
homepage = "https://tilok.dev"
|
homepage = "https://tilok.dev"
|
||||||
|
homepage = "https://tilok.dev"
|
||||||
|
|
||||||
[package.metadata.wix]
|
[package.metadata.wix]
|
||||||
upgrade-guid = "C59671CA-09B6-4A5C-B381-BFDECECB9F9D"
|
upgrade-guid = "C59671CA-09B6-4A5C-B381-BFDECECB9F9D"
|
||||||
@@ -41,7 +42,12 @@ ci = "github"
|
|||||||
# The installers to generate for each app
|
# The installers to generate for each app
|
||||||
installers = ["shell", "powershell", "npm", "homebrew", "msi"]
|
installers = ["shell", "powershell", "npm", "homebrew", "msi"]
|
||||||
# Target platforms to build apps for (Rust target-triple syntax)
|
# Target platforms to build apps for (Rust target-triple syntax)
|
||||||
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
|
targets = [
|
||||||
|
"aarch64-apple-darwin",
|
||||||
|
"x86_64-apple-darwin",
|
||||||
|
"x86_64-unknown-linux-gnu",
|
||||||
|
"x86_64-pc-windows-msvc",
|
||||||
|
]
|
||||||
# The archive format to use for windows builds (defaults .zip)
|
# The archive format to use for windows builds (defaults .zip)
|
||||||
windows-archive = ".tar.gz"
|
windows-archive = ".tar.gz"
|
||||||
# The archive format to use for non-windows builds (defaults .tar.xz)
|
# The archive format to use for non-windows builds (defaults .tar.xz)
|
||||||
@@ -54,3 +60,4 @@ pr-run-mode = "plan"
|
|||||||
install-updater = true
|
install-updater = true
|
||||||
|
|
||||||
allow-dirty = ["ci"]
|
allow-dirty = ["ci"]
|
||||||
|
allow-dirty = ["ci"]
|
||||||
|
|||||||
Reference in New Issue
Block a user