Skip to content

Fixes #53 with link label position, node background and arrow on hover #12

Fixes #53 with link label position, node background and arrow on hover

Fixes #53 with link label position, node background and arrow on hover #12

Workflow file for this run

name: Build
permissions: {}
on:
pull_request:
paths-ignore:
- '**.md'
push:
paths-ignore:
- '**.md'
workflow_dispatch:
inputs:
debug:
description: Enable debug
type: boolean
required: false
default: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: azuwis/actions/nix@main
with:
debug: ${{ github.event_name == 'workflow_dispatch' && inputs.debug }}
- uses: cachix/cachix-action@v12
with:
name: azuwis
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Build
run: |
nix -L develop .# --profile ~/.local/state/nix/profiles/shell --command yarn build
test -e ./dist/zigbee2mqtt-networkmap.js
- uses: actions/upload-artifact@v4
with:
name: zigbee2mqtt-networkmap
path: ./dist/zigbee2mqtt-networkmap.js
- uses: azuwis/actions/nix/post@main
release:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: build
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- uses: azuwis/actions/release@main
with:
files: ./zigbee2mqtt-networkmap/zigbee2mqtt-networkmap.js