mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
6620f5513c
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
430 B
YAML
17 lines
430 B
YAML
name: Publish rust-client to crates.io on release
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build_rust_and_publish_to_crates_io:
|
|
runs-on: ubicloud-standard-8
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: cachix/install-nix-action@v31
|
|
- run: cd rust-client && nix develop ../ --command ./dev.nu --check --publish
|
|
env:
|
|
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
|