Skip to content

ci: Fix broken if statement #109

ci: Fix broken if statement

ci: Fix broken if statement #109

Workflow file for this run

name: CI
on:
push:
jobs:
checks:
uses: ./.github/workflows/checks.yml
build:
uses: ./.github/workflows/build.yml
secrets: inherit
deploy:
needs: ["build"]
uses: ./.github/workflows/deploy.yml
secrets: inherit
release:
if: startsWith(github.ref, 'refs/tags/v')
needs: ["build"]
uses: ./.github/workflows/release.yml
secrets: inherit