Skip to content

Commit

Permalink
py dependency for gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zlshames authored Jul 2, 2024
1 parent 6edf84c commit 108c489
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,24 @@ jobs:
strategy:
matrix:
os: [macOS-13]
python-version: ["pypy3.10", "3.10"]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Use Node.js 20.11
uses: actions/setup-node@v1
- 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
- name: Build & Publish BlueBubbles
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run release

0 comments on commit 108c489

Please sign in to comment.