mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-11-14 19:04:59 -05:00
1376cf6a31
* chore(runtime): use LTS V18 * chore(workflows): update * remove usage `node:` * Update packetTest.js * Update client.js --------- Co-authored-by: Romain Beaumont <romain.rom1@gmail.com>
32 lines
No EOL
894 B
YAML
32 lines
No EOL
894 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: 18.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 |