Skip to content

Commit b65afa5

Browse files
committed
Bump to 0.8.0-alpha.1.
1 parent 94ed979 commit b65afa5

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

.github/workflows/publish.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
tags: [ "**" ]
6+
7+
env:
8+
RUST_LOG: debug
9+
CARGO_TERM_COLOR: always
10+
RUST_BACKTRACE: "1"
11+
RUSTFLAGS: "-D warnings"
12+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
13+
14+
jobs:
15+
publish:
16+
name: Publish
17+
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v2
22+
23+
- name: Install Rust Stable
24+
uses: actions-rs/toolchain@v1
25+
with:
26+
toolchain: stable
27+
override: true
28+
29+
- name: Cargo publish
30+
uses: actions-rs/cargo@v1
31+
with:
32+
command: publish

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fastcgi-client"
3-
version = "0.8.0"
3+
version = "0.8.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
55
edition = "2018"
66
description = "Fastcgi client implemented for Rust."

0 commit comments

Comments
 (0)