Skip to content

Commit cee223a

Browse files
committed
allowing for build workflow
1 parent 2a91614 commit cee223a

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ jobs:
4141
4242
build:
4343
name: Build
44-
if: false # delete this line and uncomment the line below to enable automatic builds
45-
# if: github.event_name == 'push' || github.event_name == 'release'
44+
if: github.event_name == 'push' || github.event_name == 'release'
4645
# needs: [ test ] # uncomment to require passing tests
4746
runs-on: ubuntu-22.04
4847

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from chris_plugin import chris_plugin
2121

22-
__version__ = "0.2.1"
22+
__version__ = "0.2.2"
2323

2424
APP_PACKAGE = "fedmed_flower_app"
2525
APP_DIR = Path(resources.files(APP_PACKAGE))

fedmed_flower_app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
"server_app",
1111
]
1212

13-
__version__ = "0.2.0"
13+
__version__ = "0.2.2"

fedmed_flower_app/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "fedmed-flower-app"
7-
version = "0.2.0"
7+
version = "0.2.2"
88
description = "FedMed Flower App"
99
license = {text = "MIT"}
1010
authors = [{name = "FedMed Team", email = "dev@fedmed.org"}]

0 commit comments

Comments
 (0)