2022-10-11 13:19:04 +00:00
|
|
|
name: Build latest
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-10-26 11:03:53 +00:00
|
|
|
paths:
|
|
|
|
- .github/workflows/build.yml
|
|
|
|
- src/**
|
|
|
|
- browser/**
|
|
|
|
- scripts/build/**
|
|
|
|
- package.json
|
2022-10-11 13:19:04 +00:00
|
|
|
env:
|
2022-10-13 22:12:30 +00:00
|
|
|
FORCE_COLOR: true
|
2022-10-11 13:19:04 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
Build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
|
|
|
|
|
|
|
|
- name: Use Node.js 18
|
2022-10-26 11:03:53 +00:00
|
|
|
uses: actions/setup-node@v3
|
2022-10-11 13:19:04 +00:00
|
|
|
with:
|
2022-10-26 11:03:53 +00:00
|
|
|
node-version: 19
|
2022-10-11 13:19:04 +00:00
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Build web
|
2022-11-07 20:29:31 +00:00
|
|
|
run: pnpm buildWeb --standalone
|
2022-10-13 22:12:30 +00:00
|
|
|
|
2022-10-11 13:19:04 +00:00
|
|
|
- name: Build
|
2022-10-23 21:23:52 +00:00
|
|
|
run: pnpm build --standalone
|
2022-10-13 22:12:30 +00:00
|
|
|
|
2022-11-07 20:38:14 +00:00
|
|
|
- name: Get some values needed for the release
|
|
|
|
id: release_values
|
|
|
|
run: |
|
2022-11-07 20:39:49 +00:00
|
|
|
echo "release_tag=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
2022-11-07 20:38:14 +00:00
|
|
|
|
2022-10-27 08:55:56 +00:00
|
|
|
- name: Upload Devbuild
|
2022-11-07 20:38:14 +00:00
|
|
|
run: |
|
|
|
|
gh release upload devbuild --clobber dist/*
|
|
|
|
gh release edit devbuild --title "DevBuild $RELEASE_TAG"
|
2022-10-11 13:19:04 +00:00
|
|
|
env:
|
2022-10-27 08:55:56 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-11-07 20:38:14 +00:00
|
|
|
RELEASE_TAG: ${{ env.release_tag }}
|