Skip to content

Commit 0a7bc7a

Browse files
committed
Update CI files
1 parent d2e7690 commit 0a7bc7a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.ci/scripts/skip_tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
DOC_PATTERNS = [
2626
r"^docs/",
2727
r"\.md$",
28-
r"\.txt$",
2928
r"LICENSE.*",
3029
r"CHANGELOG.*",
3130
r"CHANGES.*",

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,11 @@ jobs:
167167
pip install towncrier
168168
169169
- name: "Get release notes"
170-
id: get_release_notes
170+
id: "get_release_notes"
171+
shell: "bash"
171172
run: |
173+
# The last commit before the release commit contains the release CHANGES fragments
174+
git checkout "${TAG_NAME}~"
172175
NOTES=$(towncrier build --draft --version $TAG_NAME)
173176
echo "body<<EOF" >> $GITHUB_OUTPUT
174177
echo "$NOTES" >> $GITHUB_OUTPUT

.github/workflows/scripts/build_python_client.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pushd pulp_python-client
2424
python setup.py sdist bdist_wheel --python-tag py3
2525

2626
twine check "dist/pulp_python_client-"*"-py3-none-any.whl"
27-
twine check "dist/pulp_python-client-"*".tar.gz"
27+
twine check "dist/pulp_python_client-"*".tar.gz"
2828

2929
tar cvf "../../pulp_python/python-python-client.tar" ./dist
3030

0 commit comments

Comments
 (0)