Skip to content

Publish

Publish #11

Workflow file for this run

name: Publish
on:
workflow_dispatch:
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
profile: minimal
toolchain: stable
override: true
- name: Publish Fluxion
run: cargo publish -p fluxion --token ${CARGO_REGISTRY_TOKEN}
working-directory: ./fluxion
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}