Skip to content

Commit d60f760

Browse files
committed
First release
1 parent 47e2111 commit d60f760

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
push:
88
branches:
99
- main
10+
tags:
11+
- '**'
1012
pull_request:
1113
jobs:
1214
test:
@@ -94,6 +96,9 @@ jobs:
9496
path: ~/.cache/pre-commit
9597
key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
9698
- run: pre-commit run --show-diff-on-failure --color=always --all-files
99+
env:
100+
# We dont need to run actionlint on CI, because if GH runs it then we don't care.
101+
SKIP: actionlint
97102

98103
# https://github.com/marketplace/actions/alls-green#why used for branch protection checks
99104
check:
@@ -187,7 +192,7 @@ jobs:
187192
python-version: '3.10'
188193

189194
- name: check package version
190-
run: python .github/check_version.py
195+
run: python .github/check-version.py
191196

192197
- run: pip install -U twine
193198

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows-fonts"
3-
version = "0.1.0"
3+
version = "0.1.0-alpha1"
44
edition = "2018"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ classifiers = [
1212
"Topic :: Text Processing :: Fonts",
1313
]
1414
authors = [
15-
{ name="Ash Berlin-Taylor", email="ash_github@firemirror.com>" },
15+
{ name="Ash Berlin-Taylor", email="ash_github@firemirror.com" },
1616
]
1717

1818
[project.optional-dependencies]

0 commit comments

Comments
 (0)