Skip to content

Commit a94c9fe

Browse files
authored
Merge pull request #13 from minrk/pre
can't use strict tags when building prereleases
2 parents bdcdd21 + 4ffe3ce commit a94c9fe

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ jobs:
7777
# assume it's a backport branch which means we need to get all tags to work out
7878
# which MAJOR and MAJOR.MINOR aliases are needed.
7979
allTags: ${{ (github.ref != format('refs/heads/{0}', env.LATEST_BRANCH)) && (github.base_ref != format('refs/heads/{0}', env.LATEST_BRANCH)) }}
80-
strict: "true"
80+
# can't use strict when building prereleases
81+
strict: "false"
8182

8283
- name: Get new tag # zizmor: ignore[template-injection]
8384
id: new

.github/workflows/watch-dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/setup-python@v5
4848
with:
4949
# this should match the Python version in base/Dockerfile
50-
python-version: '3.10'
50+
python-version: "3.10"
5151
- name: install pip-tools
5252
run: |
5353
pip install --upgrade pip

0 commit comments

Comments
 (0)