Skip to content

Commit 08a6a27

Browse files
committed
Update check-release-tag
1 parent 4afe437 commit 08a6a27

2 files changed

Lines changed: 15 additions & 11 deletions

File tree

.github/workflows/check-release-tag.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,23 @@ on:
55

66
jobs:
77

8-
check-tag-version-job:
9-
name: Check Tag Version
8+
check-release-tag:
9+
name: Check Release Tag
1010
runs-on: "ubuntu-24.04"
1111
permissions:
1212
contents: read
1313
steps:
14-
- name: SCM Checkout
14+
- name: Check out Repository
15+
id: check-out-repository
1516
uses: actions/checkout@v6
1617

17-
- name: Setup Python & Poetry Environment
18-
uses: ./.github/actions/python-environment
18+
- name: Set up Python & Poetry Environment
19+
id: set-up-python-and-poetry-environment
20+
uses: exasol/python-toolbox/.github/actions/python-environment@v5
1921
with:
2022
python-version: "3.10"
2123
poetry-version: "2.3.0"
2224

23-
- name: Check Tag Version
25+
- name: Check Release Tag
2426
# make sure the pushed/created tag matched the project version
2527
run: "[[ `poetry version --short` == ${{ github.ref_name }} ]]"

exasol/toolbox/templates/github/workflows/check-release-tag.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,23 @@ on:
55

66
jobs:
77

8-
check-tag-version-job:
9-
name: Check Tag Version
8+
check-release-tag:
9+
name: Check Release Tag
1010
runs-on: "(( os_version ))"
1111
permissions:
1212
contents: read
1313
steps:
14-
- name: SCM Checkout
14+
- name: Check out Repository
15+
id: check-out-repository
1516
uses: actions/checkout@v6
1617

17-
- name: Setup Python & Poetry Environment
18+
- name: Set up Python & Poetry Environment
19+
id: set-up-python-and-poetry-environment
1820
uses: exasol/python-toolbox/.github/actions/python-environment@v5
1921
with:
2022
python-version: "(( minimum_python_version ))"
2123
poetry-version: "(( dependency_manager_version ))"
2224

23-
- name: Check Tag Version
25+
- name: Check Release Tag
2426
# make sure the pushed/created tag matched the project version
2527
run: "[[ `poetry version --short` == ${{ github.ref_name }} ]]"

0 commit comments

Comments
 (0)