Skip to content

Commit

Permalink
fix(artifacts): include dist artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven committed Jul 17, 2024
1 parent 052ef67 commit c7fd644
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ jobs:
uses: actions/download-artifact@v4
with:
name: kongponents-ci-build-output-artifact
path: |
dist/**
./package.json
./README.md
./LICENSE

- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
Expand Down
2 changes: 1 addition & 1 deletion src/components/KToaster/ToastManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default class ToastManager {
constructor(options?: ToasterOptions) {
// For SSR, prevents failing on the build)
if (typeof document === 'undefined') {
console.warn('ToastManager should only be initialized in a browser environment. Docs: https://kongponents.konghq.com/components/toaster.html')
console.warn('ToastManager should only be initialized in the browser environment. Docs: https://kongponents.konghq.com/components/toaster.html')

return
}
Expand Down

0 comments on commit c7fd644

Please sign in to comment.