Skip to content

Update build.yml

Update build.yml #10

Workflow file for this run

name: Build and Release
on:
push:
tags:
- 'v*.*.*' # Triggers on version tags
- 'v*.*.*-*' # Trigger for pre-release tags
workflow_dispatch: # Allows manual triggering
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest] # Matrix for multiple OS builds
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: |
cd ./DeskThingServer
npm ci
- name: Run type check
run: |
cd ./DeskThingServer
npm run typecheck
- name: Build application for Windows
if: runner.os == 'Windows'
run: |
cd ./DeskThingServer
npm run build:win
- name: Build application for macOS
if: runner.os == 'macOS'
run: |
cd ./DeskThingServer
npm run build:mac
- name: Build application for Linux
if: runner.os == 'Linux'
run: |
cd ./DeskThingServer
npm run build:linux
- name: Extract version from tag
id: get_version
run: echo "::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}"
- name: Upload artifact for Windows
if: runner.os == 'Windows'
uses: actions/upload-artifact@v3
with:
name: DeskThing-${{ steps.get_version.outputs.VERSION }}-windows-setup.exe
path: ./DeskThingServer/dist/*.exe
- name: Upload artifact for macOS
if: runner.os == 'macOS'
uses: actions/upload-artifact@v3
with:
name: DeskThing-${{ steps.get_version.outputs.VERSION }}-mac-setup.dmg
path: ./DeskThingServer/dist/*.dmg
- name: Upload artifact for Linux
if: runner.os == 'Linux'
uses: actions/upload-artifact@v3
with:
name: DeskThing-${{ steps.get_version.outputs.VERSION }}-linux.AppImage
path: ./DeskThingServer/dist/*.AppImage
release:
needs: build # Runs after build job
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: DeskThing-ubuntu-latest
path: ./dist/ubuntu
- uses: actions/download-artifact@v3
with:
name: DeskThing-macos-latest
path: ./dist/macos
- uses: actions/download-artifact@v3
with:
name: DeskThing-windows-latest
path: ./dist/windows
- name: Check for existing release
id: release_check
run: |
TAG_NAME=$(git describe --tags --exact-match ${{ github.sha }})
echo "::set-output name=tag_name::${TAG_NAME}"
- name: Create or update release
if: steps.release_check.outputs.tag_name != ''
id: create_release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.release_check.outputs.tag_name }}
files: |
./dist/ubuntu/*
./dist/macos/*
./dist/windows/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create new release if no existing release found
if: steps.release_check.outputs.tag_name == ''
uses: softprops/action-gh-release@v1
with:
files: |
./dist/ubuntu/*
./dist/macos/*
./dist/windows/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}