poisson_reconstruction 0.4.0

Screened Poisson Reconstruction algorithm in Rust
Documentation
name: Release Pipeline

on:
  pull_request:
  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
    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
    secrets: inherit