Skip to content

ci: create the GitHub Actions + Semantic Release #1

ci: create the GitHub Actions + Semantic Release

ci: create the GitHub Actions + Semantic Release #1

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: read
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js πŸš€
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Install dependencies πŸ“¦
run: pnpm install
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: pnpm audit signatures
- name: Update version and changelog πŸ“š
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release