Skip to content

Merge pull request #25 from ForesightMiningSoftwareCorporation/bevy-0.12 #23

Merge pull request #25 from ForesightMiningSoftwareCorporation/bevy-0.12

Merge pull request #25 from ForesightMiningSoftwareCorporation/bevy-0.12 #23

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:
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