Skip to content

Deploy

Deploy #6

Workflow file for this run

name: Deploy
on:
create:
tags:
- 'v[0-9]+\.[0-9]+\.[0-9]+'
jobs:
build-and-upload:
name: Build and upload
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- build: linux
os: ubuntu-latest
target: x86_64-unknown-linux-musl
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}