Skip to content

Commit 445168c

Browse files
authored
fix(CI): fix for Build and publish docs job (#114)
* fix(CI): fix for `Build and publish docs` job
1 parent 629ee1f commit 445168c

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
docs:
125125
name: Build and publish docs
126126

127-
if: startsWith(github.ref, 'tags/v2.') # Only for version 2.X.X
127+
if: contains(github.ref, 'tags/v2.') # Only for version 2.X.X
128128

129129
needs: deploy
130130

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## [Unreleased]
88

99

10+
## [2.0.2] - 2025-10-20
11+
### Fixed
12+
- CI docs build & deploy condition
13+
14+
1015
## [2.0.1] - 2025-10-15
1116
### Fixed
1217
- Logging duplication on CloudWatch side

docs/antora-playbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
start_path: docs
88
branches: []
99
# branches: HEAD # Use this for local development
10-
tags: [v2.0.1]
10+
tags: [v2.0.2]
1111
asciidoc:
1212
attributes:
1313
page-toclevels: 5

docs/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name: corva-sdk
2-
version: 2.0.1
2+
version: 2.0.2
33
nav: [modules/ROOT/nav.adoc]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "corva-sdk"
77
description = "SDK for building Corva DevCenter Python apps."
88
readme = "README.md"
9-
version = "2.0.1"
9+
version = "2.0.2"
1010
license = { text = "The Unlicense" }
1111
authors = [
1212
{ name = "Jordan Ambra", email = "jordan.ambra@corva.ai" }

src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.0.1"
1+
VERSION = "2.0.2"

0 commit comments

Comments
 (0)