Skip to content

Commit 9f60402

Browse files
committed
update ci/cd to github actions
1 parent cd47f92 commit 9f60402

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Build, test, release
2+
3+
# note "create" event is just so our flows trigger on tag pushes that
4+
# are tagged with [ci skip], see https://github.com/orgs/community/discussions/179637
5+
on: [push, create]
6+
7+
jobs:
8+
call-build:
9+
uses: haridusministeerium/workflows/.github/workflows/py-build-publish-app.yml@master
10+
secrets: inherit
11+

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ i3-cycle-focus = "i3_tools.i3_cycle_focus:main"
2424
i3-cycle-workspace = "i3_tools.i3_cycle_workspace:main"
2525

2626
[tool.zest-releaser]
27-
extra-message = "[CI SKIP]"
28-
# do not push to git remote:
29-
push-changes = false
27+
extra-message = "[skip ci]"
28+
# push to git remote:
29+
push-changes = true
3030
# do not release to pypi:
3131
release = false
3232
history_format = "md"
33+

0 commit comments

Comments
 (0)