Skip to content

Commit c23d534

Browse files
ci: create tag
1 parent 72c6e0d commit c23d534

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/create-tag.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Create tag
2+
on: [push]
3+
4+
jobs:
5+
create-tag:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-python@v5
10+
with:
11+
python-version: "3.12"
12+
- name: Install local package
13+
run: pip install .
14+
- name: Extract version
15+
run: python -c "import importlib.metadata; print(importlib.metadata.version('oc4ids-datastore-pipeline'))"

0 commit comments

Comments
 (0)