Skip to content

updated workflow

updated workflow #6

Workflow file for this run

name: Build-BlueBubbles-Server
on:
push:
branches: [ build-test ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-13]
python-version: ["pypy3.10", "3.10"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
run: python -m pip install setuptools
- name: Setup Node.js 20.11
uses: actions/setup-node@v4
with:
node-version: '20.11'
- name: Install Dependencies
run: npm install
- name: Build & Publish BlueBubbles
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run release