Skip to content

Merge branch 'main' of https://github.com/snrakshith/react-template #8

Merge branch 'main' of https://github.com/snrakshith/react-template

Merge branch 'main' of https://github.com/snrakshith/react-template #8

Workflow file for this run

name: "Release"
on:
push:
branches:
- main
jobs:
release:
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Release a new version
run: npx semantic-release
env:
GITHUB_TOKEN: "${{ secrets.GH_TOKEN }}"