1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-11 08:46:25 +00:00

update to python 3.11

This commit is contained in:
darodi
2023-01-08 21:11:18 +01:00
parent 608e79a9fc
commit be4b35b705
5 changed files with 11 additions and 6 deletions

View File

@@ -3,6 +3,7 @@
name: build KCC for mac os
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
@@ -28,7 +29,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.11
cache: 'pip'
- name: Install python dependencies
run: |
@@ -36,7 +37,7 @@ jobs:
pip install -r requirements.txt
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- run: npm install -g appdmg
- name: build binary
run: |
@@ -48,6 +49,7 @@ jobs:
path: dist/*.dmg
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
prerelease: true
generate_release_notes: true