Skip to content

Commit a156439

Browse files
authored
Merge pull request #149 from aliceinwire/release
pyproject: Update release to v0.1.5
2 parents edcebe8 + dda70cf commit a156439

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

.github/workflows/docs.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,22 @@ jobs:
5757
--theme PaperMod \
5858
--minify \
5959
--baseURL "${{ steps.pages.outputs.base_url }}/"
60+
- name: Build with Hugo v0.1.5
61+
env:
62+
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache
63+
HUGO_ENVIRONMENT: production
64+
TZ: America/Los_Angeles
65+
run: |
66+
git fetch --prune --unshallow
67+
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
68+
git fetch --all --tags
69+
git checkout tags/v0.1.5
70+
hugo \
71+
--gc \
72+
--theme PaperMod \
73+
--minify \
74+
--baseURL "${{ steps.pages.outputs.base_url }}/v0.1.5/" \
75+
--destination ./public/v0.1.5
6076
- name: Build with Hugo v0.1.4
6177
env:
6278
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache

kcidev/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@click.group(
2323
help="Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI."
2424
)
25-
@click.version_option("0.1.4", prog_name="kci-dev")
25+
@click.version_option("0.1.5", prog_name="kci-dev")
2626
@click.option(
2727
"--settings",
2828
default=".kci-dev.toml",

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 = "kci-dev"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI"
55
authors = ["Arisu Tachibana <arisu.tachibana@miraclelinux.com>"]
66
license = "LGPL-2.1-or-later"

0 commit comments

Comments
 (0)