Skip to content

Release

Release #4

Workflow file for this run

name: "Deploy"
on:
pull_request:
push:
branches:
- main
jobs:
build_linux:
uses: ./.github/workflows/workflow-build-backend.yaml

Check failure on line 11 in .github/workflows/cd.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/cd.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/cd.yaml" -> "./.github/workflows/workflow-build-backend.yaml" : failed to fetch workflow: workflow was not found.
with:
target: ubuntu-latest
build_windows:
uses: ./.github/workflows/workflow-build-backend.yaml
with:
target: windows-latest
build_macos:
uses: ./.github/workflows/workflow-build-backend.yaml
with:
target: macos-latest
upload:
needs: [build_linux, build_windows, build_macos]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- run: pip install twine
- uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Display structure of downloaded files
run: ls -R dist