diff --git a/.github/workflows/npm-publish-github-packages.yml b/.github/workflows/npm-publish-github-packages.yml
deleted file mode 100644
index 1cd2ec3..0000000
--- a/.github/workflows/npm-publish-github-packages.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-name: Node.js Package for Github
-on:
-  workflow_dispatch:
-  release:
-    types: [created]
-  push:
-    branches: [ master ]
-  pull_request:
-    branches: [ master ]
-jobs:
-  build:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v3
-      - uses: actions/setup-node@v3
-        with:
-          node-version: 16
-      - run: yarn install
-      - run: yarn build
-  publish-gpr:
-    needs: build
-    runs-on: ubuntu-latest
-    permissions:
-      contents: read
-      packages: write
-    steps:
-      - uses: actions/checkout@v3
-      - uses: actions/setup-node@v3
-        with:
-          node-version: 16
-          registry-url: https://npm.pkg.github.com/
-      - run: yarn publish --access public
-        env:
-          NODE_AUTH_TOKEN: ${{secrets.GITH_PACKAGE_TOKEN}}
\ No newline at end of file