Skip to content

Commit

Permalink
Homebridge Verified
Browse files Browse the repository at this point in the history
  • Loading branch information
jxg81 committed Aug 29, 2022
1 parent 27f3cff commit 5495c80
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI
name: Build and Test

on:
push:
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release
on:
release:
types: [published]
jobs:
build:
environment: deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
# homebridge-actron-que

[![verified-by-homebridge](https://badgen.net/badge/homebridge/verified/purple)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)

[![npm](https://img.shields.io/npm/v/homebridge-actron-que/latest?label=latest)](https://www.npmjs.com/package/homebridge-actron-que)
[![GitHub release](https://img.shields.io/github/release/jxg81/homebridge-actron-que.svg)](https://github.com/jxg81/homebridge-actron-que/releases)
[![npm](https://img.shields.io/npm/dt/homebridge-actron-que)](https://www.npmjs.com/package/homebridge-actron-que)

[![Github CI](https://github.com/jxg81/homebridge-actron-que/actions/workflows/build.yml/badge.svg)](https://github.com/jxg81/homebridge-actron-que/actions)
[![Github CD](https://github.com/jxg81/homebridge-actron-que/actions/workflows/release.yml/badge.svg)](https://github.com/jxg81/homebridge-actron-que/actions)
[![Hex.pm](https://img.shields.io/hexpm/l/plug)](https://www.apache.org/licenses/LICENSE-2.0)

[![paypal](https://img.shields.io/badge/donate-paypal-blue)](https://www.paypal.com/donate/?business=MP4ZR6WS8UPX8&no_recurring=0&item_name=%28jxg81%29+-+Thanks+for+your+support.&currency_code=AUD)

Use this plugin to control your Actron Que system with Apple HomeKit using Homebridge.

## Current Status
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
"bugs": {
"url": "https://github.com/jxg81/homebridge-actron-que/issues"
},
"funding":
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/jxg81"
},
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
Expand Down

0 comments on commit 5495c80

Please sign in to comment.