/[sudobot]/trunk/.github/workflows/release.yml
ViewVC logotype

Diff of /trunk/.github/workflows/release.yml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 608 by rakinar2, Wed Aug 21 03:56:33 2024 UTC revision 626 by rakinar2, Sat Sep 7 09:38:45 2024 UTC
# Line 1  Line 1 
1  name: Releases  name: Releases
2    
3  on:  on:
4    push:    push:
5      branches:      branches:
6        - main        - main
7    
8    permissions:
9      contents: write
10      deployments: write
11    
12  jobs:  jobs:
13    build:    build:
14      if: github.repository_owner == 'onesoft-sudo'      if: github.repository_owner == 'onesoft-sudo' && github.ref == 'refs/heads/main'
15    
16      strategy:      strategy:
17        matrix:        matrix:
# Line 15  jobs: Line 20  jobs:
20      runs-on: ${{ matrix.os }}      runs-on: ${{ matrix.os }}
21    
22      steps:      steps:
23        - uses: actions/checkout@v3        - uses: actions/checkout@v4
24    
25        - name: Use Node.js 21.x        - name: Use Node.js 21.x
26          uses: actions/setup-node@v3          uses: actions/setup-node@v4
27          with:          with:
28            node-version: 21.x            node-version: 21.x
29    
# Line 57  jobs: Line 62  jobs:
62            tar -cvzf sudobot-release-${OS}-incomplete.tar.gz sudobot-release-${OS};            tar -cvzf sudobot-release-${OS}-incomplete.tar.gz sudobot-release-${OS};
63    
64        - name: Upload Release Artifacts        - name: Upload Release Artifacts
65          uses: actions/upload-artifact@v3          uses: actions/upload-artifact@v4
66          with:          with:
67            name: sudobot-release-${{ matrix.os }}-incomplete            name: sudobot-release-${{ matrix.os }}-incomplete
68            path: |            path: |
# Line 65  jobs: Line 70  jobs:
70    
71    release:    release:
72      needs: [build]      needs: [build]
73      if: github.repository_owner == 'onesoft-sudo'      if: github.repository_owner == 'onesoft-sudo' && github.ref == 'refs/heads/main'
74      runs-on: ubuntu-latest      runs-on: ubuntu-latest
75    
76      steps:      steps:
77        - uses: actions/checkout@v3        - uses: actions/checkout@v4
78    
79        - name: Prepare Git        - name: Prepare Git
80          run: |          run: |
# Line 79  jobs: Line 84  jobs:
84            git config --global user.signingkey "6AE7B08C68169452"            git config --global user.signingkey "6AE7B08C68169452"
85            git config --global commit.gpgsign true            git config --global commit.gpgsign true
86    
87        - name: Conventional Changelog Action        - name: Conventional Release Action
88          id: changelog          id: auto_release
89          uses: TriPSs/conventional-changelog-action@v5          uses: onesoft-sudo/conventional-release-action@main
90          with:          with:
91            github-token: ${{ secrets.__TOKEN }}            version-json-file: "./package.json"
92            version-file: "./package.json"            git-user-name: "Conventional Release Action"
           git-user-name: "Conventional Changelog Action"  
93            git-user-email: [email protected]            git-user-email: [email protected]
94            git-message: |            commit-message-format: "release: v%s [skip ci]"
95              release: {version} [skip ci]            git-sign-off: true
96              changelog-file: CHANGELOG.md
97              Signed-off-by: Ar Rakin <[email protected]>            changelog-format: markdown
98              allowed-commit-types: feat,fix,refactor,perf,ci,build,test,revert,chore,release,deps
99    
100        - name: Download Linux Release Artifact        - name: Download Linux Release Artifact
101          uses: actions/download-artifact@v2          uses: actions/download-artifact@v4
102          with:          with:
103            name: sudobot-release-ubuntu-latest-incomplete            name: sudobot-release-ubuntu-latest-incomplete
104    
105        - name: Download macOS Release Artifact        - name: Download macOS Release Artifact
106          uses: actions/download-artifact@v2          uses: actions/download-artifact@v4
107          with:          with:
108            name: sudobot-release-macos-latest-incomplete            name: sudobot-release-macos-latest-incomplete
109    
# Line 125  jobs: Line 130  jobs:
130        - name: Create Release        - name: Create Release
131          id: create_release          id: create_release
132          uses: ncipollo/release-action@v1          uses: ncipollo/release-action@v1
133          if: ${{ steps.changelog.outputs.skipped == 'false' }}          if: ${{ steps.auto_release.outputs.tag != '' }}
134          env:          env:
135            GITHUB_TOKEN: ${{ secrets.__TOKEN }}            GITHUB_TOKEN: ${{ secrets.__TOKEN }}
136          with:          with:
137            tag: ${{ steps.changelog.outputs.tag }}            tag: ${{ steps.auto_release.outputs.tag }}
138            name: ${{ steps.changelog.outputs.tag }}            name: ${{ steps.auto_release.outputs.tag }}
139            body: ${{ steps.changelog.outputs.clean_changelog }}            body: ${{ steps.auto_release.outputs.release_notes }}
140            artifactContentType: application/x-gzip            artifactContentType: application/x-gzip
141            artifacts: ./sudobot-release-linux.tar.gz,./sudobot-release-darwin.tar.gz            artifacts: ./sudobot-release-linux.tar.gz,./sudobot-release-darwin.tar.gz
142    
143      deploy-staging:
144        needs: [build, release]
145        if: github.repository_owner == 'onesoft-sudo'
146        uses: ./.github/workflows/staging.yml
147        secrets: inherit

Legend:
Removed from v.608  
changed lines
  Added in v.626

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26