Skip to content

Prepare release 2.6.0 (#65) #3

Prepare release 2.6.0 (#65)

Prepare release 2.6.0 (#65) #3

Workflow file for this run

name: Continuous Deployment
on:
push:
tags:
- "v*.*.*"
jobs:
crates:
name: Publish to crates.io
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v1
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Make sure we can publish the niffler crate
uses: actions-rs/cargo@v1
with:
command: publish
args: --dry-run --manifest-path ./Cargo.toml
# Login to crates.io on tags
- name: login to crates.io
uses: actions-rs/cargo@v1
with:
command: login
args: ${{ secrets.CRATES_IO_TOKEN }}
# Publish to crates.io on tags
- name: Publish to crates.io
uses: actions-rs/cargo@v1
with:
command: publish
args: --manifest-path ./Cargo.toml