We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3235fc7 commit 1bbd5a7Copy full SHA for 1bbd5a7
.github/workflows/prerelease.yaml
@@ -34,10 +34,13 @@ jobs:
34
- name: Print varaibles
35
run: |
36
echo Version: ${{ steps.get-version.outputs.version }}
37
+ - name: Update CHANGELOG.md (cross platform supported)
38
+ run: |
39
+ sed -i.bak -e 's/## Next/## Next\n\n## ${{ steps.get-version.outputs.version }}/' CHANGELOG.md && rm CHANGELOG.md.bak
40
- uses: EndBug/add-and-commit@v9
41
with:
42
author_name: 'Neo4j-GenAI GitHub Action'
43
author_email: 'team-gen-ai@neo4j.com'
44
message: 'Bump version to ${{ steps.get-version.outputs.version }}'
- add: 'pyproject.toml'
45
+ add: "['pyproject.toml', 'CHANGELOG.md']"
46
tag: '${{ steps.get-version.outputs.version }}'
0 commit comments