Skip to content

BUGFIX: Workflow path #21

BUGFIX: Workflow path

BUGFIX: Workflow path #21

Workflow file for this run

name: Build PrusaSlicer (BOSS)
on:
push:
# branches:
# - boss
# - release/*
paths:
- 'deps/**'
- 'src/**'
- '**/CMakeLists.txt'
- 'version.inc'
- 'resources/**'
- ".github/workflows/*.yml"
- "build_release_linux.sh"
- "build_release_macos.sh"
- "build_win.bat"
pull_request:
branches:
- boss
- release/*
paths:
- 'deps/**'
- 'src/**'
- '**/CMakeLists.txt'
- 'version.inc'
- ".github/workflows/*.yml"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build PrusaSlicer (BOSS)
strategy:
fail-fast: false
matrix:
platform: [linux, osx, windows]
uses: ./.github/workflows/build/build_${{ matrix.platform }}.yml

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

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

invalid value workflow reference: workflows must be defined at the top level of the .github/workflows/ directory
secrets: inherit
release:
name: Release
uses: ./.github/workflows/release.yml
needs: [build]
secrets: inherit
permissions:
contents: write