DEV Community

Dimitrios Desyllas
Dimitrios Desyllas

Posted on

Why scemantic-release fails to tag my lib and release it?

I try to release a saas library with build css. But, as explained below:

I am developing a library and for that I am setting up a CI pipeline using github actions:


name: "release-sass"
on:
  push:
    branches:
      - dev

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
        - name: Checkout current branch
          uses: actions/checkout@v4

        - name: "Setup Node"
          uses: actions/setup-node@v4
          with:
              node-version: 21
        - name: "Install npm

I have a problem running and configuring the semantic-release command. And I am looking on your assistance for that. Can you help me?

Top comments (0)