Skip to content

Tagged github actions #2

Tagged github actions

Tagged github actions #2

Workflow file for this run

name: Build and publish
on:
push:
branches:
- master
tags:
- '*'
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_publish:
name: Build and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update stable
- run: rustup default stable
- run: cargo build
- run: cargo test
- run: cargo publish --token ${{ secrets.CRATES_TOKEN }}