From be2d6343239f90b7d703bf11cdc989586947ed16 Mon Sep 17 00:00:00 2001 From: Claire Saba Date: Wed, 14 Feb 2024 16:46:40 +0100 Subject: [PATCH] fix(publish): fix publish config and check_build steps --- .github/workflows/check_build.yml | 19 +------------------ package.json | 3 +++ 2 files changed, 4 insertions(+), 18 deletions(-) diff --git a/.github/workflows/check_build.yml b/.github/workflows/check_build.yml index 3c56b06..86fde0e 100644 --- a/.github/workflows/check_build.yml +++ b/.github/workflows/check_build.yml @@ -32,21 +32,4 @@ jobs: - name: Install dependencies run: npm ci - name: Build - run: npm run build - - name: Generate release notes preview - id: build-release-notes - uses: guilhermetod/semantic-release-notes-preview@v1.0.0 - - name: Comment release notes preview - if: steps.build-release-notes.outputs.releaseNotes - uses: peter-evans/create-or-update-comment@v1 - with: - issue-number: ${{ github.event.number }} - body: | - ## 👋 Hey there! - Thank you for you contribution. Below is a preview of the release notes if your PR gets merged. - Please, make sure it includes all your significant changes with descriptive messages. - Keep in mind that release notes are automatically generated from the commit messages according to [conventional commits](https://www.conventionalcommits.org/). - - --- - - ${{ steps.build-release-notes.outputs.releaseNotes }} \ No newline at end of file + run: npm run build \ No newline at end of file diff --git a/package.json b/package.json index 4736690..d26c511 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,9 @@ "extends": "@codingame/semantic-release-config-github" }, "private": false, + "publishConfig": { + "access": "public" + }, "dependencies": { "json-schema": "^0.4.0" },