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 }} |