Skip to content

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

ci-tests are now a requirement of the release workflow

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

Workflow file for this run

name: Release Workflow
on:
push:
tags:
- "*" # triggers only if push new tag version
jobs:
lint:
uses: ./.github/workflows/linters.yml
build:
uses: ./.github/workflows/builders.yml
needs: lint
ci-tests:
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