Skip to content

Feat/ci update

Feat/ci update #6

Workflow file for this run

name: Publishing packages on crates.io
on:
pull_request:
workflow_dispatch:
inputs:
name:
description: 'Manually triggered'
jobs:
publish:
name: Publish ledger_device_sdk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: katyo/publish-crates@v2
with:
args: --no-verify
dry-run: ${{ github.event.pull_request || github.event.workflow.workflow_dispatch }}