Skip to content

chore: bump version to v0.0.27 #36

chore: bump version to v0.0.27

chore: bump version to v0.0.27 #36

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
build-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm fetch:stem-model
- run: pnpm build:publish
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Developer ID Application cert (base64 .p12) + its export password.
CSC_LINK: ${{ secrets.MAC_CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.MAC_CSC_KEY_PASSWORD }}
# App Store Connect API key for notarization (base64 .p8 + identifiers).
APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }}
APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }}
APPLE_API_ISSUER: ${{ secrets.APPLE_API_ISSUER }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- uses: actions/setup-python@v6
with:
python-version: '3.11'
- run: pnpm install --frozen-lockfile
- run: pnpm fetch:stem-model
- run: pnpm build:publish
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
needs: [build-mac, build-windows]
runs-on: ubuntu-latest
steps:
- run: gh release edit ${{ github.ref_name }} --draft=false --repo RubenGlez/samplebyte
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}