Skip to content

chore: update logo image #31

chore: update logo image

chore: update logo image #31

Workflow file for this run

name: Create Release and Publish to npm
on:
push:
branches:
- main
jobs:
release:
name: Create Release and Publish to npm
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm install
- name: Test
run: npm test
- name: Run semantic-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release