Skip to content

better wording in some parts of README.md, changed ci.yml to run only… #16

better wording in some parts of README.md, changed ci.yml to run only…

better wording in some parts of README.md, changed ci.yml to run only… #16

Workflow file for this run

name: release
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build
- run: npm audit signatures
- name: check dist content
run: ls dist
- name: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
shell: bash