Skip to content

Commit c740b8b

Browse files
committed
Release action: fix changelog execution
1 parent fc23568 commit c740b8b

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Check out repository code
1414
uses: actions/checkout@v3
1515
with:
16-
fetch-depth: 2
16+
fetch-depth: 0
1717
- name: Fix permissions
1818
run: chown -R app:app .
1919
- name: Update npm
@@ -35,7 +35,7 @@ jobs:
3535
run: git config --global --add safe.directory /__w/django-autocomplete-light/django-autocomplete-light
3636
- name: Tell git we are on master branch
3737
run: |
38-
git fetch origin master:refs/remotes/origin/master
38+
#git fetch origin master:refs/remotes/origin/master
3939
git reset --soft origin/master
4040
- name: Get last commit message
4141
id: last-commit-message

changelog.py

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
shell=True,
2727
).decode('utf8').split('\n')
2828

29+
print('git log:', git_log)
30+
2931
tags = {}
3032
tag_commits = []
3133
for line in git_log:

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "django-autocomplete-light",
3-
"version": "3.9.8rc24",
3+
"version": "3.9.8rc25",
44
"description": "A fresh approach to autocomplete implementations, specially for Django. Status: v3 stable, 2.x.x stable, 1.x.x deprecated. Please DO regularely ping us with your link at #yourlabs IRC channel https://django-autocomplete-light.readthedocs.io/",
55
"directories": {
66
"doc": "docs"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def read(fname):
1212

1313
setup(
1414
name='django-autocomplete-light',
15-
version='3.9.8rc24',
15+
version='3.9.8rc25',
1616
description='Fresh autocompletes for Django',
1717
author='James Pic',
1818
author_email='[email protected]',

0 commit comments

Comments
 (0)