Skip to content

fix

fix #31

Workflow file for this run

name: Node-CI Beta
on:
push:
branches: [beta-*.*.*, beta]
workflow_dispatch:
jobs:
build_and_test:
uses: homebridge/.github/.github/workflows/nodejs-build-and-test.yml@latest
with:
enable_coverage: false
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
lint:
needs: build_and_test
uses: homebridge/.github/.github/workflows/eslint.yml@latest
publish:
needs: lint
if: ${{ github.repository == 'homebridge/plugin-ui-utils' }}
uses: homebridge/.github/.github/workflows/npm-publish-esm.yml@latest
with:
tag: beta
dynamically_adjust_version: true
npm_version_command: pre
pre_id: beta
secrets:
npm_auth_token: ${{ secrets.npm_token }}
# github-releases-to-discord:
# name: Discord Webhooks
# needs: publish
# uses: homebridge/.github/.github/workflows/discord-webhooks.yml@latest
# with:
# title: Plugin UI Utils (Beta)
# description: |
# Version `v${{ needs.publish.outputs.NPM_VERSION }}`
# secrets:
# DISCORD_WEBHOOK_URL_BETA: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}