Merge pull request #4754 from thematters/develop #327
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Create Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@master | |
| with: | |
| fetch-depth: 0 | |
| - name: Get Version | |
| id: version | |
| uses: martinbeentjes/npm-get-version-action@master | |
| - name: Generate CHANGELOG | |
| uses: scottbrenner/generate-changelog-action@master | |
| id: changelog | |
| env: | |
| REPO: ${{ github.repository }} | |
| - name: Create Release | |
| uses: actions/create-release@v1.1.4 | |
| with: | |
| tag_name: v${{ steps.version.outputs.current-version}} | |
| release_name: v${{ steps.version.outputs.current-version}} | |
| body: | | |
| ${{ steps.changelog.outputs.changelog }} | |
| draft: false | |
| prerelease: false | |
| - name: Slack Notification | |
| if: always() | |
| uses: 8398a7/action-slack@v3 | |
| with: | |
| status: ${{ job.status }} | |
| author_name: matters-server | |
| fields: repo,message,commit,author,action,eventName,ref,workflow,job,took |