Skip to content

Remove sponsor section (#59) #52

Remove sponsor section (#59)

Remove sponsor section (#59) #52

Workflow file for this run

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:
publish: ${{ (github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.publish)) && 'true' || 'false' }}
publish_public_registry: true
secrets: inherit