Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

v0.1.1

v0.1.1 #2

Workflow file for this run

name: Publish a release
on:
release:
types: [published]
permissions:
contents: write
id-token: write
jobs:
release:
name: Release tantivy-czech-stemmer to Crates.io
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust toolchain [stable]
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build tantivy-czech-stemmer
run: cargo build
- name: Publish tantivy-czech-stemmer
run: cargo publish --token ${CRATES_API_TOKEN}
env:
CRATES_API_TOKEN: ${{ secrets.CRATES_API_TOKEN }}