Skip to content

Bump version to v0.3.0 #4

Bump version to v0.3.0

Bump version to v0.3.0 #4

Workflow file for this run

name: Rust
on:
push:
tags:
- v[0-9]+.*
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
ci:
name: "CI"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Cargo toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Publish
uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Upgrade Brew Tap
uses: chyroc/[email protected]
with:
name: "lipsum-cli"
tap_repo: "xlith/homebrew-lipsum-cli"
token: ${{ secrets.TAP_TOKEN }}