Skip to content

Commit 0e890ca

Browse files
committed
👷 Add publishing crates.io
1 parent 792f582 commit 0e890ca

File tree

5 files changed

+26
-3
lines changed

5 files changed

+26
-3
lines changed

.github/workflows/version.yml

+17
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,20 @@ jobs:
5151
with:
5252
version: ${{ needs.bump.outputs.version }}
5353
prerelease: ${{ !contains('major, minor, patch', inputs.bump) }}
54+
55+
publish:
56+
needs: [ "bump", "build" ]
57+
runs-on: ubuntu-latest
58+
steps:
59+
- name: Checkout
60+
uses: actions/checkout@v4
61+
with:
62+
ref: ${{ needs.bump.outputs.version }}
63+
64+
- name: Setup
65+
uses: ./.github/actions/setup
66+
67+
- name: Publish to crates.io
68+
run: just publish
69+
env:
70+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["YISH <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.75.0"
77

8-
keywords = ["DNS", "BIND", "dig", "named", "dnssec", "SmartDNS", "Dnsmasq"]
8+
keywords = ["DNS", "BIND", "dig", "SmartDNS", "Dnsmasq"]
99
categories = ["network-programming"]
1010

1111
description = """
@@ -14,7 +14,7 @@ A cross platform local DNS server written in rust to obtain the fastest website
1414

1515
homepage = "https://github.com/mokeyish/smartdns-rs"
1616
repository = "https://github.com/mokeyish/smartdns-rs"
17-
license = "GPL-v3.0"
17+
license = "GPL-3.0-only"
1818
readme = "README.md"
1919

2020
[lints.rust]

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SmartDNS-rs
22

33
![Test](https://github.com/mokeyish/smartdns-rs/actions/workflows/test.yml/badge.svg?branch=main)
4+
[![Crates.io Version](https://img.shields.io/crates/v/smartdns.svg)](https://crates.io/crates/smartdns)
45
[![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/mokeyish/smartdns-rs?display_name=tag&include_prereleases)](https://github.com/mokeyish/smartdns-rs/releases)
56
[![homebrew version](https://img.shields.io/homebrew/v/smartdns)](https://formulae.brew.sh/formula/smartdns)
67
![OS](https://img.shields.io/badge/os-Windows%20%7C%20MacOS%20%7C%20Linux-blue)

README_zh-CN.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SmartDNS-rs
22

33
![Test](https://github.com/mokeyish/smartdns-rs/actions/workflows/test.yml/badge.svg?branch=main)
4+
[![Crates.io Version](https://img.shields.io/crates/v/smartdns.svg)](https://crates.io/crates/smartdns)
45
[![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/mokeyish/smartdns-rs?display_name=tag&include_prereleases)](https://github.com/mokeyish/smartdns-rs/releases)
56
[![homebrew version](https://img.shields.io/homebrew/v/smartdns)](https://formulae.brew.sh/formula/smartdns)
67
![OS](https://img.shields.io/badge/os-Windows%20%7C%20MacOS%20%7C%20Linux-blue)

justfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ test *args: patch
3636
check *args: patch
3737
{{cargo}} check --workspace --tests --benches --examples {{args}}
3838

39+
# Publish
40+
publish *args: patch
41+
{{cargo}} publish --no-verify
42+
3943

4044
# Run clippy fix
4145
clippy: patch
@@ -73,4 +77,4 @@ setcap:
7377

7478
[private]
7579
@require_set-version:
76-
cargo set-version --version >/dev/null 2>&1 || cargo install cargo-edit > /dev/null
80+
cargo set-version --version >/dev/null 2>&1 || cargo install cargo-edit > /dev/null

0 commit comments

Comments
 (0)