Bump the changelog

This commit is contained in:
Kevin Yue 2021-08-22 20:05:59 +08:00
parent 39e57c8598
commit 946ead24a4

View File

@ -10,6 +10,9 @@ jobs:
pre-release: pre-release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }} if: ${{ github.event.workflow_run.conclusion == 'success' }}
env:
CHANGELOG_AUTHOR_NAME: "Kevin Yue"
CHANGELOG_AUTHOR_EMAIL: "yuezk001@gmail.com"
steps: steps:
# Checkout repository and submodules # Checkout repository and submodules
@ -23,6 +26,13 @@ jobs:
echo ::set-output name=VERSION::$(git tag --sort=-v:refname --list "v[0-9]*" | head -n 1 | cut -c 2-) echo ::set-output name=VERSION::$(git tag --sort=-v:refname --list "v[0-9]*" | head -n 1 | cut -c 2-)
echo ::set-output name=SHA::$(echo ${GITHUB_SHA} | cut -c1-8) echo ::set-output name=SHA::$(echo ${GITHUB_SHA} | cut -c1-8)
- name: Patch changelog (snapshot)
uses: pi-top/git-debian-changelog-bump-action@master
with:
release: false
author_name: ${{ env.CHANGELOG_AUTHOR_NAME }}
author_email: ${{ env.CHANGELOG_AUTHOR_EMAIL }}
- name: "Archive all" - name: "Archive all"
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip