mirror of
https://github.com/php/pie-ext-binary-builder.git
synced 2026-03-23 23:22:24 +01:00
24 lines
708 B
YAML
24 lines
708 B
YAML
name: 'PIE Pre-Packaged Binary Action'
|
|
description: 'Build and upload a PIE pre-packaged binary with the expected naming conventions.'
|
|
inputs:
|
|
configure-flags:
|
|
description: 'Flags to pass to ./configure'
|
|
required: false
|
|
default: ''
|
|
build-path:
|
|
description: 'Path to the extension source directory containing config.m4 (relative to repo root)'
|
|
required: false
|
|
default: '.'
|
|
release-tag:
|
|
description: 'The tag to use for the release'
|
|
required: true
|
|
github-token:
|
|
description: 'The GitHub token to use for uploading assets'
|
|
required: true
|
|
outputs:
|
|
package-path:
|
|
description: 'Path to the generated .zip package'
|
|
runs:
|
|
using: 'node20'
|
|
main: dist/index.js
|