Skip to content

Create Release

Create Release #3

Workflow file for this run

name: Create Release
on: [workflow_dispatch]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install dependencies
run: npm ci
- name: Bump version
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
npm version patch -m "Bump to %s"
git push
- name: Build app
run: npm run build
- name: Get version
id: packagejson
uses: martinbeentjes/[email protected]
- name: Create Changelog with commits since last release
run: |
chmod +x ./.github/scripts/get_commits.sh
./.github/scripts/get_commits.sh > commit_log.txt
- name: Upload Release
uses: ncipollo/[email protected]
with:
artifacts: 'mui-${{ steps.packagejson.outputs.current-version }}.tar.gz'
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.packagejson.outputs.current-version }}
bodyFile: commit_log.txt