Skip to content

Update get-version.yml #98

Update get-version.yml

Update get-version.yml #98

Workflow file for this run

name: Build feature
on:
push:
branches-ignore: [mob/**, main]
env:
PERL_VERSION: 5.34
PYTHON_VERSION: 3.11
OPENSSL_VERSION: 1.1.1q
PROTOBUF_VERSION: 21.6
BOOST_VERSION: 1.79.0
jobs:
get-version:
uses: ./.github/workflows/get-version.yml

Check failure on line 16 in .github/workflows/build-feature.yml

View workflow run for this annotation

GitHub Actions / Build feature

Invalid workflow file

The workflow is not valid. In .github/workflows/build-feature.yml (Line: 16, Col: 11): Error from called workflow mickem/nscp/.github/workflows/get-version.yml@3fff5adae2942eafb848e6eea7dd14c2b77ab501 (Line: 7, Col: 9): Unexpected value 'type' In .github/workflows/build-feature.yml (Line: 16, Col: 11): Error from called workflow mickem/nscp/.github/workflows/get-version.yml@3fff5adae2942eafb848e6eea7dd14c2b77ab501 (Line: 9, Col: 9): Unexpected value 'required'
test-job:
runs-on: ubuntu-latest
needs: get-version
steps:
- name: Test
run: echo "Test ${{ needs.get-version.outputs.version }}"
build-x64:
needs: get-version
uses: ./.github/workflows/build-windows.yml
with:
architecture: x64
version: ${{ needs.get-version.outputs.version }}
build-x86:
needs: get-version
uses: ./.github/workflows/build-windows.yml
with:
architecture: x86
version: ${{ needs.get-version.outputs.version }}