Skip to content

Commit

Permalink
chore: bump version to 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemeowx2 committed Dec 31, 2020
1 parent 405ff37 commit 82c3310
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
on:
release:
types: [published]

name: Publish

jobs:
publish:
name: Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Cache Cargo
uses: actions/cache@v1
with:
path: ~/.cargo
key: ubuntu-latest-stable-cargo-v1
restore-keys: |
ubuntu-latest-stable-cargo-v1
- name: Setup toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: cargo publish
uses: actions-rs/cargo@v1
with:
command: publish
args: -p blflash --token ${{ secrets.CRATES_IO_TOKEN }}
2 changes: 0 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,3 @@ jobs:
file: target/${{ matrix.target }}/release/blflash
asset_name: blflash-${{ matrix.target }}
tag: ${{ github.ref }}


2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion blflash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "blflash"
description = "BL602 serial flasher."
version = "0.2.1"
version = "0.2.2"
authors = ["spacemeowx2 <spacemeowx2@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 82c3310

Please sign in to comment.