Skip to content

bump version

bump version #13

Workflow file for this run

name: Release Pipeline
on:
pull_request_target:
push:
branches:
- main
workflow_dispatch:
inputs:
publish:
type: boolean
required: false
description: Trigger with publish
jobs:
publish:
uses: ForesightMiningSoftwareCorporation/github/.github/workflows/rust-build.yml@v1.1.0
with:
skip-test: ${{ github.event_name == 'push' && 'true' || (github.event_name == 'workflow_dispatch' && inputs.publish) }}
publish: ${{ (github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.publish)) && 'true' || 'false' }}
publish_public_registry: true
toolchain: "1.70"
secrets: inherit