Skip to content

Promote Stage

Promote Stage #2

Workflow file for this run

name: Promote Stage
on:
workflow_dispatch:
inputs:
stage-id:
description: 'Stage to promote from'
required: true
default: unstable
base-tag-name:
description: 'Base tag name (eg "r3_2-beta2")'
required: true
package-name:
description: 'Package Name Filter (optional)'
dry-run-mode:
description: 'Dry-run (empty for write mode)'
required: true
default: dry-run
jobs:
build:
steps:

Check failure on line 22 in .github/workflows/promote-stage.yml

View workflow run for this annotation

GitHub Actions / Promote Stage

Invalid workflow file

The workflow is not valid. .github/workflows/promote-stage.yml (Line: 22, Col: 5): Required property is missing: runs-on
- uses: actions/checkout@v4
- name: Promote Stage
id: build
run: |
set -x
${{ github.workspace }}/.github/scripts/tag-stage.sh \
${{ github.workspace }} \
${{ github.event.inputs.stage-id }} \
${{ github.event.inputs.base-tag-name }} \
${{ github.event.inputs.package-name }} \
${{ github.event.inputs.dry-run-mode }}