Skip to content

fix: readme - add logo #33

fix: readme - add logo

fix: readme - add logo #33

Workflow file for this run

name: Publish
on:
push:
branches: [master]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.11.1'
- run: npm ci
- name: Build the project
run: npm run build
- name: Run semantic-release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}