/[sudobot]/branches/4.x/.github/workflows/release.yml
ViewVC logotype

Contents of /branches/4.x/.github/workflows/release.yml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File size: 936 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 name: Releases
2 on:
3 push:
4 branches:
5 - main
6
7 jobs:
8 changelog:
9 if: github.repository_owner == 'onesoft-sudo'
10 runs-on: ubuntu-latest
11
12 steps:
13 - uses: actions/checkout@v3
14
15 - name: Conventional Changelog Action
16 id: changelog
17 uses: TriPSs/[email protected]
18 with:
19 github-token: ${{ secrets.__TOKEN }}
20 version-file: './package.json,./package-lock.json'
21 git-user-name: "Conventional Release Action"
22 git-user-email: [email protected]
23
24 - name: Create Release
25 uses: actions/create-release@v1
26 if: ${{ steps.changelog.outputs.skipped == 'false' }}
27 env:
28 GITHUB_TOKEN: ${{ secrets.__TOKEN }}
29 with:
30 tag_name: ${{ steps.changelog.outputs.tag }}
31 release_name: ${{ steps.changelog.outputs.tag }}
32 body: ${{ steps.changelog.outputs.clean_changelog }}

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26