Build & Publish Binaries #40
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: Build & Publish Binaries | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
schedule: | |
- cron: '0 13-21/2 * * MON-FRI' # every hour, during working hours (UTC) | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- name: macos-13 | |
target_name: macos | |
- name: ubuntu-latest | |
target_name: linux | |
- name: windows-latest | |
target_name: windows | |
node_version: [20.11.1] | |
runs-on: ${{matrix.os.name}} | |
continue-on-error: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 # Checkout code from repository | |
with: | |
ref: dev | |
- uses: ilammy/setup-nasm@v1 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.1 | |
- uses: pnpm/action-setup@v3 | |
name: Install pnpm | |
with: | |
version: 8.15.4 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install | |
# Apparently we have to do this in a few separate steps | |
# because building/bundling web and server simultaneously | |
# can destroy a machine... | |
- name: Bundle web | |
run: pnpm turbo -vv bundle --filter=@tunarr/web | |
- name: 'Create env file' | |
run: | | |
touch server/.env | |
echo TUNARR_BUILD="$(git rev-parse --short ${{ github.sha }})" >> server/.env | |
echo TUNARR_EDGE_BUILD=true | |
cat server/.env | |
- name: Bundle server | |
run: pnpm turbo -vv bundle --filter=@tunarr/server | |
- name: Build Executable | |
run: pnpm run --filter=server make-exec:${{ matrix.os.target_name }} | |
- name: Upload Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: Tunarr Edge | |
tag_name: edge | |
prerelease: true | |
files: | | |
./server/build/tunarr-${{ matrix.os.target_name }}-x64.zip* |