Skip to content

build: prepare v5.18.0 release #24

build: prepare v5.18.0 release

build: prepare v5.18.0 release #24

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint App
uses: ./.github/workflows/lint.yml
tests:
name: Tests
uses: ./.github/workflows/test.yml
needs: lint
build:
name: Build
uses: ./.github/workflows/build.yml
needs: tests
if: ${{ !startsWith(github.head_ref, 'release/v') }}
secrets: inherit
release:
name: Release
uses: ./.github/workflows/release.yml
needs: tests
if: ${{ startsWith(github.head_ref, 'release/v') }}
secrets: inherit
permissions:
contents: write