Skip to content

Commit

Permalink
CI error fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
WarstekHUN committed Oct 7, 2023
1 parent 93a9879 commit c05fc05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ jobs:
with:
node-version: '18.x'
registry-url: 'https://npm.pkg.github.com'
scope: '@warstekhun'
scope: '@zilaws'
- name: Install modules
run: npm ci
- name: Build and generate coverage badges
run: npm run build
- name: Publish to GitHub Packages
run: npm publish
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.PAT }}
17 changes: 0 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +0,0 @@
- Fixed an issue with importing the library.

## Breaking Changes

### New importing
From now on, there is no default export.

ESM

```ts
import { ZilaConnection } from "zilaws-server";
```

CommonJS
```ts
const { ZilaConnection } = require("zilaws-server");
```

0 comments on commit c05fc05

Please sign in to comment.