Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Fix lib publish configs #4

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 1 addition & 18 deletions .github/workflows/check_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
- 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 }}
run: npm run build
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
"extends": "@codingame/semantic-release-config-github"
},
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"json-schema": "^0.4.0"
},
Expand Down