Skip to content

devenv-run-tests: sort by path #326

devenv-run-tests: sort by path

devenv-run-tests: sort by path #326

Workflow file for this run

name: "Release"
on:
push:
branches:
- main
tags:
- v*
paths-ignore:
- "docs/**"
- "mkdocs.yml"
- "requirements.in"
- "requirements.txt"
workflow_dispatch:
inputs:
ref:
description: 'Git ref (tag or branch) to release'
required: true
default: 'main'
type: string
concurrency:
group: "release-${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || github.ref_name }}"
cancel-in-progress: false
jobs:
pipeline:
strategy:
fail-fast: false
matrix:
include:
- system: aarch64-linux
runs-on: '["self-hosted", "linux", "ARM64"]'
- system: x86_64-linux
runs-on: '["self-hosted", "linux", "X64"]'
- system: aarch64-darwin
runs-on: '["self-hosted", "macOS", "ARM64"]'
- system: x86_64-darwin
runs-on: '["macos-13"]'
uses: ./.github/workflows/release-per-system.yml

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "./.github/workflows/release-per-system.yml" (source branch with sha:f158ce24e9e658313310802af0a9d9c5fcef43a6) --> "./.github/workflows/build.yml" (source branch with sha:f158ce24e9e658313310802af0a9d9c5fcef43a6) : (Line: 52, Col: 16): Unrecognized named-value: 'steps'. Located at position 1 within expression: steps.build-devenv.outputs.path
secrets: inherit
with:
system: ${{ matrix.system }}
runs-on: ${{ matrix.runs-on }}
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || '' }}
containers:
uses: ./.github/workflows/containers.yml
secrets: inherit
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || '' }}