Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: write # Push tags and changelog commits
issues: write # Create GitHub Issues on failure
pull-requests: write # (Optional) Comment on PRs with changelog info
jobs:
release:
name: Semantic Release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.10.0
- name: Install dependencies
run: npm ci
- name: Run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Provided by GitHub Actions
run: npx semantic-release