From 548f076a484231e979c7242fb7ca667f62e513a8 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Fri, 2 Apr 2021 20:00:22 +0100 Subject: [PATCH 1/2] Ensure tag name is correct format --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d0d173..fc87cb2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,6 +14,9 @@ jobs: version: ${{ steps.get_version.outputs.version }} steps: + - name: Ensure tag is in format v*.*.* + run: "[[ ${{ github.event.tag_name }} == v*.*.* ]]" + - name: Get the version id: get_version run: echo ::set-output name=version::${GITHUB_REF#refs/tags/v} From 0cdf725da4a2e399614589a5aa2d6e25c454784c Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Fri, 2 Apr 2021 20:00:45 +0100 Subject: [PATCH 2/2] Version 0.1.1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5c931a0..510786d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "olli" -version = "0.1.0" +version = "0.1.1" description = "Olli searches your Loki logs and relays matching terms to Discord." authors = ["Joe Banks "] license = "MIT"