Skip to content

Commit

Permalink
Release action: fix changelog execution
Browse files Browse the repository at this point in the history
  • Loading branch information
jpic authored and github-actions[bot] committed May 24, 2023
1 parent fc23568 commit e3c919a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
with:
fetch-depth: 2
fetch-depth: 0
- name: Fix permissions
run: chown -R app:app .
- name: Update npm
Expand All @@ -35,7 +35,7 @@ jobs:
run: git config --global --add safe.directory /__w/django-autocomplete-light/django-autocomplete-light
- name: Tell git we are on master branch
run: |
git fetch origin master:refs/remotes/origin/master
#git fetch origin master:refs/remotes/origin/master
git reset --soft origin/master
- name: Get last commit message
id: last-commit-message
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@



3.9.5-rc6

2023-04-07 Release 3.9.5-rc6
Expand Down
2 changes: 2 additions & 0 deletions changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
shell=True,
).decode('utf8').split('\n')

print('git log:', git_log)

tags = {}
tag_commits = []
for line in git_log:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "django-autocomplete-light",
"version": "3.9.8rc24",
"version": "3.9.8rc29",
"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/",
"directories": {
"doc": "docs"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name='django-autocomplete-light',
version='3.9.8rc24',
version='3.9.8rc29',
description='Fresh autocompletes for Django',
author='James Pic',
author_email='jamespic@gmail.com',
Expand Down

0 comments on commit e3c919a

Please sign in to comment.