Skip to content

Version 6.1.1

Version 6.1.1 #9

Workflow file for this run

name: Build binaries
on: [push]
jobs:
build:
name: Build package
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.17'
- name: build & package
run: |
# try and avoid timeout errors
yarn config set network-timeout 100000 -g
yarn install --frozen-lockfile
yarn build
yarn companion-module-build
- name: Archive module package
uses: actions/upload-artifact@v3
with:
name: Companion module archive
path: pkg.tgz