Files
2021-06-23 19:06:41 +02:00

43 lines
1.5 KiB
YAML

name: npm-publish
on:
push:
branches:
- master # Change this to your default branch
workflow_dispatch:
jobs:
npm-publish:
name: npm-publish
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
with:
submodules: true
- name: Set up Node.js
uses: actions/setup-node@master
with:
node-version: 10.0.0
- run: npm install
- name: Publish if version has been updated
if: github.event_name != 'workflow_dispatch'
uses: pascalgn/npm-publish-action@4f4bf159e299f65d21cd1cbd96fc5d53228036df
with: # All of theses inputs are optional
tag_name: "%s"
tag_message: "%s"
commit_pattern: "^Release (\\S+)"
env: # More info about the environment variables in the README
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Leave this as is, it's automatically generated
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} # You need to set this in your repo settings
- name: Check if version has been updated
if: github.event_name != 'workflow_dispatch'
id: check
uses: EndBug/version-check@v1
- name: "Trigger new GH Page creation in mcData repo"
uses: peter-evans/repository-dispatch@v1
if: steps.check.outputs.changed == 'true' || github.event_name == 'workflow_dispatch'
with:
token: ${{ secrets.PAT_PASSWORD }}
repository: PrismarineJS/minecraft-data
event-type: node-mcData-release