Skip to content

chore: bump to v1.82.107 #118

chore: bump to v1.82.107

chore: bump to v1.82.107 #118

Workflow file for this run

name: Build and Release
on:
push:
tags:
- v*
jobs:
build-and-release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, macos-10.15]
steps:
- name: Checkout Git repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "18.x"
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
npm install
- name: Build and release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CSC_LINK: ${{ secrets.MAC_CERTS }}
CSC_KEY_PASSWORD: ${{ secrets.MAC_CERTS_PASSWORD }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
run: |
export PYTHON_PATH=`which python`
npm run release
if: matrix.os == 'macos-latest' || matrix.os == 'macos-10.15'