Skip to content

Commit 35021a1

Browse files
Fixed issue with v and *v
1 parent 3f5c83b commit 35021a1

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.github/workflows/ci-cd.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@ name: Python Package CI
22

33
on:
44
push:
5-
branches: [ "main" ]
6-
tags: [ "v*" ]
5+
branches:
6+
- main
7+
tags:
8+
- '*'
79
pull_request:
8-
branches: [ "main" ]
10+
branches:
11+
- main
12+
release:
13+
types: [published]
914

1015
permissions:
1116
contents: read
@@ -16,7 +21,7 @@ jobs:
1621
runs-on: ubuntu-latest
1722
strategy:
1823
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
24+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2025
steps:
2126
- uses: actions/checkout@v4
2227
with:
@@ -49,7 +54,7 @@ jobs:
4954
runs-on: ubuntu-latest
5055
strategy:
5156
matrix:
52-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
57+
python-version: ["3.9", "3.10", "3.11", "3.12"]
5358
steps:
5459
- uses: actions/checkout@v4
5560
with:
@@ -74,7 +79,7 @@ jobs:
7479
runs-on: ubuntu-latest
7580
strategy:
7681
matrix:
77-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
82+
python-version: ["3.9", "3.10", "3.11", "3.12"]
7883
steps:
7984
- name: Checkout
8085
uses: actions/checkout@v4
@@ -143,7 +148,7 @@ jobs:
143148
environment: release
144149
strategy:
145150
matrix:
146-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
151+
python-version: ["3.9", "3.10", "3.11", "3.12"]
147152
steps:
148153
- uses: actions/checkout@v4
149154
with:

0 commit comments

Comments
 (0)