Skip to content

I'm so good at GitHub Actions #1

I'm so good at GitHub Actions

I'm so good at GitHub Actions #1

Workflow file for this run

name: Publish macOS build
on:
push:
branches:
- "senpai"
paths:
- "desktop/**"
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}