@visualon/gitea-releaser 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,9 +24,15 @@ jobs:
24
24
  registry-url: https://registry.npmjs.org/
25
25
  - run: pnpm install
26
26
  - run: pnpm version ${GITHUB_REF_NAME#v}
27
+ - name: Generate changelog with git-cliff
28
+ uses: tj-actions/git-cliff@v1.4.2
29
+ with:
30
+ args: --latest --strip all
31
+ output: 'CHANGELOG.md'
27
32
  - run: pnpm publish --access public
28
33
  env:
29
34
  NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
30
35
  - uses: ncipollo/release-action@6c75be85e571768fa31b40abf38de58ba0397db5 # v1.13.0
31
36
  with:
32
- generateReleaseNotes: true
37
+ bodyFile: 'CHANGELOG.md'
38
+ prerelease: ${{ contains(github.ref_name, '-') }}
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
1
  # gitea-releaser
2
2
 
3
- gitea releaser tool
3
+ ![GitHub License](https://img.shields.io/github/license/visualon/gitea-releaser)
4
+ [![test](https://github.com/visualon/gitea-releaser/actions/workflows/test.yml/badge.svg)](https://github.com/visualon/gitea-releaser/actions/workflows/test.yml)
5
+
6
+ Gitea releaser tool to publish Gitea / Forgejo releases from Jenkins pipelines.
7
+ Release notes are generated with `conventional-changelog` and `conventional-commits`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visualon/gitea-releaser",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "license": "MIT",
5
5
  "author": "VisualOn GmbH",
6
6
  "type": "module",
@@ -23,6 +23,14 @@
23
23
  "node": "^18.12.0 || >=20.0.0",
24
24
  "pnpm": "^8.0.0"
25
25
  },
26
+ "tags": [
27
+ "gitea",
28
+ "forgejo",
29
+ "jenkins",
30
+ "releaser",
31
+ "conventional-commits",
32
+ "conventional-changelog"
33
+ ],
26
34
  "scripts": {
27
35
  "lint:prettier": "prettier --cache --check --ignore-unknown .",
28
36
  "prettier:fix": "prettier --cache --write --ignore-unknown .",