Skip to content

Commit

Permalink
Added EveryBeam build workflow yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mpluess committed Mar 27, 2024
1 parent 8ff7df2 commit 554e45c
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build_everybeam.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: EveryBeam

on:
workflow_dispatch:
inputs:
label:
type: string
default: "main"
required: true
dev:
type: boolean
required: false
default: false
buildNumber:
type: string
required: true

workflow_call:
inputs:
label:
type: string
required: true
dev:
type: boolean
required: false
default: false
buildNumber:
type: string
required: true

jobs:
EveryBeam:
uses: ./.github/workflows/build_base.yml
with:
packageName: everybeam
packageVersion: $EVERYBEAM_VERSION
packageVersionName: EVERYBEAM_VERSION
label: ${{ inputs.label }}
dev: ${{ inputs.dev }}
buildNumber: ${{ inputs.buildNumber }}
useCuda: false
isNative: true
secrets: inherit

0 comments on commit 554e45c

Please sign in to comment.