Skip to content

feat: my new init for next vibecoded application #1

feat: my new init for next vibecoded application

feat: my new init for next vibecoded application #1

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # required — needs full git history
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install -g semantic-release @semantic-release/changelog @semantic-release/git
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}