Merge pull request #267 from cabcookie:add-ai-features #188
This file contains 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: Release Workflow | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history for all tags and branches | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: Install Dependencies | |
run: npm install | |
- name: Semantic Release | |
uses: cycjimmy/semantic-release-action@v4 | |
with: | |
extra_plugins: | | |
@semantic-release/commit-analyzer | |
@semantic-release/release-notes-generator | |
@semantic-release/changelog | |
@semantic-release/npm | |
@semantic-release/github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Rename next.md and update version | |
run: | | |
VERSION=$(node -p "require('./package.json').version") | |
mv docs/releases/next.md docs/releases/v${VERSION}.md | |
sed -i "s/:VERSION/$VERSION/g" docs/releases/v${VERSION}.md | |
shell: bash | |
- name: Commit changes | |
run: | | |
VERSION=$(node -p "require('./package.json').version") | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add docs/releases/v*.md package*.json | |
git commit -m "chore(release): v${VERSION}" || echo "No changes to commit" | |
git push |