Skip to content

Patch issue #13

Patch issue #13 #32

Workflow file for this run

name: Build Binary
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'yarn'
- name: Install dependencies && build
run: |
yarn
yarn build
yarn pkg:build
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
build/examshell-linux
build/examshell-macos