Skip to content

build: Update version management scripts and control (#2028) #373

build: Update version management scripts and control (#2028)

build: Update version management scripts and control (#2028) #373

Workflow file for this run

name: Continuous
on:
push:
branches:
- 'develop'
paths-ignore:
- '.github/workflows/benchmark.yml'
- '.github/workflows/cacheConan.yml'
- '.github/workflows/cacheNix.yml'
- '.github/workflows/issues.yml'
- '.github/workflows/pr.yml'
- '.github/workflows/release.yml'
- '.github/workflows/web**'
- '.github/ISSUE_TEMPLATE/**'
- 'web/**'
- 'README.md'
jobs:
Checkout:
uses: "./.github/workflows/_checkout.yml"
with:
bump: true
publishType: 'continuous'
QC:
needs: [Checkout]
uses: "./.github/workflows/_qc.yml"
BuildAndPackage:
needs: [Checkout]
uses: "./.github/workflows/_build_and_package.yml"
with:
currentVersion: ${{ needs.Checkout.outputs.currentVersion }}
qtVersion: ${{ needs.Checkout.outputs.qtVersion }}
antlrVersion: ${{ needs.Checkout.outputs.antlrVersion }}
conanHash: ${{ needs.Checkout.outputs.conanHash }}
nixHash: ${{ needs.Checkout.outputs.nixHash }}
Web:
needs: [Checkout]
uses: "./.github/workflows/_website.yml"

Check failure on line 43 in .github/workflows/continuous.yml

View workflow run for this annotation

GitHub Actions / Continuous

Invalid workflow file

The workflow is not valid. .github/workflows/continuous.yml (Line: 43, Col: 11): Input hugoVersion is required, but not provided while calling.
with:
publishType: 'continuous'
displayMajorVersion: ${{ needs.Checkout.outputs.majorVersion }}
displayMinorVersion: ${{ needs.Checkout.outputs.minorVersion }}
secrets: inherit
Publish:
needs: [Checkout,BuildAndPackage,Web]
uses: "./.github/workflows/_publish.yml"
with:
publishType: 'continuous'
releaseTag: 'continuous'
releaseName: "Development Release ${{ needs.Checkout.outputs.currentVersion }} @ ${{ needs.Checkout.outputs.currentShortHash }}"
releaseBodyFile: ./ChangeLog.md
secrets: inherit