1.0.12 #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
publish: | |
name: Publish (${{ matrix.os }} - ${{ matrix.arch }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ macOS-latest, macOS-12, ubuntu-latest, windows-latest ] | |
arch: [ x64, arm64 ] | |
# Publishing artifacts for multiple Windows architectures has | |
# a bug which can cause the wrong architecture to be downloaded | |
# for an update, so until that is fixed, only build Windows x64 | |
exclude: | |
- os: windows-latest | |
arch: arm64 | |
# Only build arm64 builds on M1 and x86 builds on Intel Mac | |
- os: macOS-latest | |
arch: x64 | |
- os: macOS-12 | |
arch: arm64 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.5.1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.10.x | |
cache: pnpm | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- name: Generate Windows code signing certificate | |
if: matrix.os == 'windows-latest' | |
id: write_file | |
uses: timheuer/[email protected] | |
with: | |
fileName: 'windows-certificate.pfx' | |
encodedString: ${{ secrets.WINDOWS_CODESIGN_CERTIFICATE }} | |
- name: Generate MacOS code signing certificate | |
if: matrix.os == 'macOS-latest' || matrix.os == 'macOS-12' | |
run: ./scripts/add-macos-cert.sh | |
env: | |
MACOS_CERT_P12: ${{ secrets.MACOS_CERT_P12 }} | |
MACOS_CERT_PASSWORD: ${{ secrets.MACOS_CERT_PASSWORD }} | |
- name: Make and Publish | |
run: pnpm run publish --arch=${{ matrix.arch }} | |
env: | |
APPLE_ID: ${{ secrets.APPLE_ID }} | |
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} | |
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | |
WINDOWS_CERTIFICATE_FILE: ${{ steps.write_file.outputs.filePath }} | |
WINDOWS_CERTIFICATE_PASSWORD: ${{ secrets.WINDOWS_CODESIGN_PASSWORD }} | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |