File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Releases
2+ on :
3+ push :
4+ branches :
5+ - main
6+
7+ jobs :
8+ changelog :
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - uses : actions/checkout@v2
13+
14+ - name : conventional Changelog Action
15+ id : changelog
16+ uses : TriPSs/conventional-changelog-action@v3.7.1
17+ with :
18+ github-token : ${{ secrets.GITHUB_TOKEN }}
19+ version-file : " Cargo.toml"
20+ version-path : " package.version"
21+
22+ - name : create release
23+ uses : actions/create-release@v1
24+ if : ${{ steps.changelog.outputs.skipped == 'false' }}
25+ env :
26+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
27+ with :
28+ tag_name : ${{ steps.changelog.outputs.tag }}
29+ release_name : ${{ steps.changelog.outputs.tag }}
30+ body : ${{ steps.changelog.outputs.clean_changelog }}
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ version = "0.0.1"
44edition = " 2021"
55authors = [" Jürgen Legler <jogihoogi@gmail.com>" ]
66license = " MIT"
7+ homepage = " https://github.com/jogi1/quakeworld"
8+ repository = " https://github.com/jogi1/quakeworld"
79description = """
810A collection of quakeworld related libraries.
911"""
You can’t perform that action at this time.
0 commit comments