Emma 92323d3829
All checks were successful
Build and Push Deno Release Action / build-and-publish (push) Successful in 17s
Build and Push Version Check Action / build (push) Successful in 18s
we go again
2025-05-06 19:51:26 -06:00

16 lines
517 B
YAML

name: Deno Multi-Platform Release
description: Compile a Deno CLI tool for multiple platforms and attach to a Gitea release
inputs:
entrypoint:
description: Path to the Deno entrypoint file (e.g., `src/main.ts`)
required: true
compile-flags:
description: Optional space-separated flags to pass to `deno compile`
required: false
runs:
using: "docker"
image: git.cyborggrizzly.com/bearmetal/ci-actions/deno-release:latest
args:
- ${{ inputs.entrypoint }}
- ${{ inputs.compile-flags }}