Skip to content

Update README.md

Update README.md #114

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