Skip to content

template build

template build #10

Workflow file for this run

name: release
on:
workflow_dispatch:
inputs:
prereleaseSlug:
description: 'Prerelease slug (optional)'
required: false
default: ''
type: choice
options:
- rc
- beta
- ''
jobs:
meta:
uses: ./.github/workflows/part-compute-version.yml
secrets: inherit
with:
prereleaseSlug: ${{ inputs.prereleaseSlug }}
checkTagIsUnique: true
build:
uses: ./.github/workflows/part-build.yml
secrets: inherit
needs: meta
with:
COALESCE_VERSION: ${{ needs.meta.outputs.COALESCE_VERSION }}
build-template:
uses: ./.github/workflows/template/part-build.yml

Check failure on line 32 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

invalid value workflow reference: workflows must be defined at the top level of the .github/workflows/ directory
secrets: inherit
needs: meta
with:
COALESCE_VERSION: ${{ needs.meta.outputs.COALESCE_VERSION }}
publish:
uses: ./.github/workflows/part-publish.yml
needs: [build, build-template]
secrets: inherit
create-release:
runs-on: ubuntu-latest
needs: [meta, publish]
steps:
- uses: actions/checkout@v3
- uses: rickstaa/action-create-tag@v1
with:
tag: ${{ needs.meta.outputs.COALESCE_VERSION }}