Skip to content

feat: Hopefully this now builds #1

feat: Hopefully this now builds

feat: Hopefully this now builds #1

Workflow file for this run

name: Backend CI
on:
push:
branches: [main]
# Ensures only actual code changes trigger the workflow, otherwise we don't want to create a full on build.
# paths:
# - 'backend/**'
jobs:
build:
name: Build Backend
uses: ./.github/workflows/backend-build.yml
secrets: inherit
release:
name: Create Release
needs: build
uses: ./.github/workflows/release.yml

Check failure on line 19 in .github/workflows/backend-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/backend-ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/backend-ci.yml" -> "./.github/workflows/release.yml" : failed to fetch workflow: workflow was not found.
secrets: inherit
publish:
name: Build & Publish Backend
needs: [build, release]
with:
version: ${{ needs.release.outputs.version }}
uses: ./.github/workflows/backend-docker-publish.yml
secrets: inherit