Skip to content

Removed requirement for nix #3

Removed requirement for nix

Removed requirement for nix #3

Workflow file for this run

name: Publish
on:
push:
tags:
- '*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run : |
VERSION="${GITHUB_REF#refs/*/}" make publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_KEY }}