- Listen on raw 'text' packet for Bedrock chat (pattern-based chat event doesn't fire reliably on Bedrock) - Brain: add safety reset for stuck pending_status flag - MariaDB: add retry-on-disconnect for all query methods - Suppress harmless punycode deprecation warning from Node.js - Add mineflayer-bedrock lib packages (mineflayer, prismarine-chunk, prismarine-registry) for movement support - Exclude minecraft-data from git (278MB, installed via npm) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
32 lines
895 B
YAML
32 lines
895 B
YAML
name: npm-publish
|
|
on:
|
|
push:
|
|
branches:
|
|
- master # Change this to your default branch
|
|
jobs:
|
|
npm-publish:
|
|
name: npm-publish
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@master
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@master
|
|
with:
|
|
node-version: 22.0.0
|
|
- id: publish
|
|
uses: JS-DevTools/npm-publish@v1
|
|
with:
|
|
token: ${{ secrets.NPM_AUTH_TOKEN }}
|
|
- name: Create Release
|
|
if: steps.publish.outputs.type != 'none'
|
|
id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ steps.publish.outputs.version }}
|
|
release_name: Release ${{ steps.publish.outputs.version }}
|
|
body: ${{ steps.publish.outputs.version }}
|
|
draft: false
|
|
prerelease: false
|