diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..f55d9ed --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,44 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +name: NPM Package Publish + +on: + push: + branches: [main] + release: + types: [created] + workflow_dispatch: + +jobs: + publish-npm: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 22 + registry-url: https://registry.npmjs.org/ + - uses: oven-sh/setup-bun@v2 + - run: bun install + - run: bun run build + - run: | + PACKAGE_NAME=$(jq -r '.name' package.json) + PACKAGE_VERSION=$(jq -r '.version' package.json) + + # Get the version from npm registry + REGISTRY_VERSION=$(npm show "$PACKAGE_NAME" version) + + # Compare versions + if [ "$PACKAGE_VERSION" == "$REGISTRY_VERSION" ]; then + echo "Version $PACKAGE_VERSION already exists in the npm registry." + exit 0 + else + echo "Version $PACKAGE_VERSION does not exist in the npm registry. Proceeding..." + npm publish --provenance --access public + fi + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} diff --git a/package.json b/package.json index 770d5e7..db5feca 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,9 @@ "typescript": "^5.0.0" }, "files": [ - "./dist", + "dist", + "deno-src", + "README.md", ".gitignore" ] } diff --git a/src/wake.ts b/src/wake.ts index 84ddc96..b5650f2 100644 --- a/src/wake.ts +++ b/src/wake.ts @@ -99,6 +99,7 @@ class WakeOnLan extends WorkerExtension { description: `Host ${action.name} deleted`, }); this.hosts = this.hosts.filter((host) => host.id !== host.id); + this.load(); }); } else { toast.error("Host not found", {