chore(release): 1.0.1
This commit is contained in:
@@ -30,9 +30,13 @@ jobs:
|
||||
- name: Push changelog and tag
|
||||
run: git push --follow-tags
|
||||
|
||||
- name: Get latest tag
|
||||
- name: Get latest tag and changelog fragment
|
||||
id: tag
|
||||
run: echo tag="$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
|
||||
run: |
|
||||
echo tag="$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
|
||||
echo "changelog<<EOF" >> $GITHUB_OUTPUT
|
||||
awk '/^## / { if (version_found) exit; version_found=1 } version_found { print }' CHANGELOG.md | sed '1d' >> $GITHUB_OUTPUT
|
||||
echo "EOF" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Create release
|
||||
uses: akkuman/gitea-release-action@v1
|
||||
|
||||
Reference in New Issue
Block a user