fix: repair release workflow
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
name: Release
|
name: Release
|
||||||
|
|
||||||
# Triggered when a version tag is pushed (e.g. v1.0.2).
|
# Triggered when a version tag is pushed (e.g. v1.0.3).
|
||||||
# Creates a GitHub Release marked as "published", which in turn
|
# Creates a GitHub Release marked as "published", which in turn
|
||||||
# triggers the build-wheels and publish jobs in CI.yml.
|
# triggers the build-wheels and publish jobs in CI.yml.
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- "v[0-9]+.[0-9]+.[0-9]+"
|
- "v*.*.*"
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
@@ -25,6 +25,10 @@ jobs:
|
|||||||
id: version
|
id: version
|
||||||
run: |
|
run: |
|
||||||
VERSION="${GITHUB_REF_NAME#v}"
|
VERSION="${GITHUB_REF_NAME#v}"
|
||||||
|
if ! [[ "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+([-.][0-9A-Za-z.]+)?$ ]]; then
|
||||||
|
echo "Expected a semantic-version tag like v1.0.3 or v1.0.3-rc1, got: $GITHUB_REF_NAME"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Extract changelog entry for this version
|
- name: Extract changelog entry for this version
|
||||||
|
|||||||
@@ -7,7 +7,14 @@ resolver = "2"
|
|||||||
name = "ferro_ta"
|
name = "ferro_ta"
|
||||||
version = "1.0.3"
|
version = "1.0.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
description = "Rust-powered Python technical analysis library with a TA-Lib-compatible API"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
readme = "README.md"
|
||||||
|
repository = "https://github.com/pratikbhadane24/ferro-ta"
|
||||||
|
homepage = "https://github.com/pratikbhadane24/ferro-ta#readme"
|
||||||
|
documentation = "https://pratikbhadane24.github.io/ferro-ta/"
|
||||||
|
keywords = ["technical-analysis", "trading", "indicators", "finance", "ta-lib"]
|
||||||
|
categories = ["finance", "mathematics"]
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|||||||
Reference in New Issue
Block a user