Updated build.yml #14
Workflow file for this run
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 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 for Windows | |
uses: actions/download-artifact@v3 | |
with: | |
name: DeskThing-windows-${{ steps.get_version.outputs.VERSION }} | |
path: ./dist/windows | |
- name: Download artifacts for macOS | |
uses: actions/download-artifact@v3 | |
with: | |
name: DeskThing-macos-${{ steps.get_version.outputs.VERSION }} | |
path: ./dist/macos | |
- name: Download artifacts for Linux | |
uses: actions/download-artifact@v3 | |
with: | |
name: DeskThing-linux-${{ steps.get_version.outputs.VERSION }} | |
path: ./dist/linux | |
- name: Check for existing release | |
id: release_check | |
run: | | |
TAG_NAME=$(git describe --tags --exact-match ${{ github.sha }} || echo '') | |
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/windows/*.exe | |
./dist/macos/*.dmg | |
./dist/linux/*.AppImage | |
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/windows/*.exe | |
./dist/macos/*.dmg | |
./dist/linux/*.AppImage | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |