Skip to content

Commit addab34

Browse files
committed
<other>(github): fix release actions
1 parent e69894d commit addab34

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

.github/workflows/build-release.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727

2828
- name: Get Tag
2929
id: var
30-
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
30+
#run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
31+
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
3132

3233
- name: Build APK
3334
run: bash ./gradlew assembleRelease
@@ -47,25 +48,25 @@ jobs:
4748
# require commit format are "type(category): description [flag]"
4849
- name: Make Changelog
4950
uses: ardalanamini/auto-changelog@v4
50-
id: changelog
51+
id : changelog
5152
with:
5253
github-token : ${{ github.token }}
5354
commit-types : |
54-
breaking: Breaking Changes
5555
feat: New Features
5656
fix: Bug Fixes
57-
revert: Reverts
57+
build: Build System & Dependencies
5858
perf: Performance Improvements
59-
refactor: Refactors
60-
deps: Dependencies
61-
docs: Documentation Changes
62-
style: Code Style Changes
63-
build: Build System
64-
ci: Continuous Integration
59+
docs: Documentation
6560
test: Tests
61+
refactor: Refactors
6662
chore: Chores
67-
other: Other Changes
68-
default-commit-type: Other Changes
63+
ci: CI
64+
style: Code Style
65+
revert: Reverts
66+
default-commit-type : Other Changes
67+
release-name : v1.0.0
68+
release-name-prefix : ""
69+
mention-authors : true
6970
mention-new-contributors: true
7071
include-compare-link : true
7172
include-pr-lints : true

0 commit comments

Comments
 (0)