Skip to content

Commit 4fc465b

Browse files
authored
Merge pull request #3 from python-discord/release-tag-validation
2 parents 02ecc4e + 0cdf725 commit 4fc465b

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
version: ${{ steps.get_version.outputs.version }}
1515

1616
steps:
17+
- name: Ensure tag is in format v*.*.*
18+
run: "[[ ${{ github.event.tag_name }} == v*.*.* ]]"
19+
1720
- name: Get the version
1821
id: get_version
1922
run: echo ::set-output name=version::${GITHUB_REF#refs/tags/v}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "olli"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Olli searches your Loki logs and relays matching terms to Discord."
55
authors = ["Joe Banks <joseph@josephbanks.me>"]
66
license = "MIT"

0 commit comments

Comments
 (0)