Skip to content

ci-tests are now a requirement of the release workflow #32

ci-tests are now a requirement of the release workflow

ci-tests are now a requirement of the release workflow #32

Workflow file for this run

name: Release Workflow
on:
push:
tags:
- "*" # triggers only if push new tag version
jobs:
ci-tests:

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

View workflow run for this annotation

GitHub Actions / Release Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 7, Col: 3): The workflow must contain at least one job with no dependencies.
needs: build
uses: ./.github/workflows/ci-tests.yml
secrets: inherit
release-build:
uses: ./.github/workflows/gorelease.yml
needs: ci-tests
image-upload:
uses: ./.github/workflows/image-upload.yml
needs: ci-tests
secrets: inherit
deploy-docs:
uses: ./.github/workflows/docs.yml
needs: ci-tests