Bump material-icons from 1.13.10 to 1.13.11 #2329
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: macOS Build | |
on: | |
push: | |
branches: | |
- "*" | |
tags: | |
- "*" | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-13 | |
strategy: | |
matrix: | |
node: ["18"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Lint | |
run: pnpm run lint | |
- name: Rebuild | |
run: pnpm rebuild node-sass | |
- name: Sharp Multiarch Rebuild | |
run: pnpm install --config.platform=darwin --config.arch=x64 sharp && pnpm --config.platform=darwin --config.arch=arm64 rebuild sharp | |
- name: Build | |
if: github.ref == 'refs/heads/main' | |
run: pnpm run build | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Build | |
if: github.ref != 'refs/heads/main' | |
run: pnpm run build --publish=never | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
- uses: actions/upload-artifact@v3 | |
name: Upload DMG | |
with: | |
name: WeakAuras-Companion-CI-dmg | |
path: release/**/*-mac-universal.dmg | |
- uses: actions/upload-artifact@v3 | |
name: Upload ZIP | |
with: | |
name: WeakAuras-Companion-CI-zip | |
path: release/**/*-mac-universal.zip |