22 lines
1.2 KiB
YAML
22 lines
1.2 KiB
YAML
# ══════════════════════════════════════════════════════════════════
|
|
# BREAKING CHANGE? BUMP THE MAJOR IN cue/cluster/cluster.cue
|
|
# ══════════════════════════════════════════════════════════════════
|
|
# Everything pinning `@v1` gets this the moment it publishes. A change
|
|
# a consumer cannot absorb needs a new major, or it breaks them.
|
|
# ══════════════════════════════════════════════════════════════════
|
|
|
|
name: publish-module
|
|
description: Publish the CUE schema module applications validate against. Used by the platform and nothing else.
|
|
|
|
inputs:
|
|
version:
|
|
description: Module version to publish, e.g. v0.1.0.
|
|
required: true
|
|
|
|
runs:
|
|
using: docker
|
|
image: docker://gitea.512.dev/ci/toolbox@sha256:88ed6a0562f98a35b02d0c13254d0b69b343675ac98709451d526a9c58782e40
|
|
entrypoint: /usr/local/lib/actions/publish-module.sh
|
|
env:
|
|
PLUGIN_VERSION: ${{ inputs.version }}
|