Skip to content

chore: cleanup gitignore #229

chore: cleanup gitignore

chore: cleanup gitignore #229

Workflow file for this run

name: Build crankshaft
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Install g++-multilib
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt update
sudo apt install g++-multilib
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 'latest'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build and release if the draft exists
run: pnpm run dist
env:
GH_TOKEN: ${{ secrets.github_token }}