Skip to content

added determine-package action #4

added determine-package action

added determine-package action #4

name: build
on:
workflow_call:
inputs:
bun-version:
description: The version of Bun to use (default `latest`)
required: false
default: latest
type: string
operating-system:
description: The operating system to use (default `ubuntu-latest`)
required: false
default: ubuntu-latest
type: string
with-submodules:
description: Whether to include submodules when checking out the repository (default `false`)
required: false
default: 'false'
type: string
jobs:
build:
name: Building
uses: aether-development/.github/workflows/reusable-bun-job.yml@main

Check failure on line 25 in .github/workflows/reusable-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/reusable-build.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be prefixed with format 'owner/repository/' or './' for local workflows
with:
script-name: build
operating-system: ${{ inputs.operating-system }}
bun-version: ${{ inputs.bun-version }}
with-submodules: ${{ inputs.with-submodules }}