fix checks
Some checks failed
CI - Docs build check / build-check (push) Failing after 4m35s

This commit is contained in:
2026-01-19 13:30:38 -06:00
parent 890c773c01
commit dded348ba4
2 changed files with 8 additions and 6 deletions

View File

@@ -2,18 +2,17 @@ name: Release - Build and publish docs
on:
push:
branches: ["main"]
tags:
- "v*"
- "!v*-rc.*"
workflow_dispatch:
- "v*"
permissions:
contents: write
jobs:
release:
if: ${{ !contains(github.ref_name, '-rc.') }}
if: >
startsWith(github.ref_name, 'v')
&& !contains(github.ref_name, '-rc')}}
runs-on: ubuntu-latest
steps: