chore(plugin): update tsconfig #403
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 | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: ${{ fromJson(matrix.target).rid }} | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
- '{"goos":"windows","rid":"win-x64","os":"windows-2022"}' | |
- '{"goos":"linux","rid":"linux-x64","os":"ubuntu-20.04"}' | |
- '{"goos":"darwin","rid":"osx-x64","os":"macos-11"}' | |
runs-on: ${{ fromJson(matrix.target).os }} | |
env: | |
GOOS: ${{ fromJson(matrix.target).goos }} | |
GOARCH: amd64 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Prepare Tag | |
id: tag | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
VERSION="${GITHUB_REF##refs/tags/}" | |
echo "Found Tag: ${VERSION}" | |
echo "version=${VERSION}" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: Draft Release | |
if: fromJson(matrix.target).goos == 'linux' && startsWith(github.ref, 'refs/tags/') | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACTIONS_DEPLOY_MODULE_KEY }} | |
run: | | |
gh release create ${{ steps.tag.outputs.version }} -d | |
shell: bash | |
- name: Cache Build Caches | |
uses: actions/cache@v3 | |
with: | |
path: build/caches/ | |
key: koi-${{ runner.os }}-${{ hashFiles('config.ts') }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: yarn | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ~1.19.0 | |
cache: true | |
cache-dependency-path: config.ts | |
- name: Install Dependencies (macOS) | |
if: fromJson(matrix.target).goos == 'darwin' | |
run: brew install graphicsmagick imagemagick | |
shell: bash | |
- name: Install Dependencies (Linux) | |
if: fromJson(matrix.target).goos == 'linux' | |
run: | | |
sudo apt update | |
sudo apt install -y fuse libfuse2 | |
shell: bash | |
- name: Install Build Package | |
run: | | |
yarn install --frozen-lockfile | |
shell: bash | |
- name: Build Koi | |
run: | | |
yarn gulp ciBuild | |
shell: bash | |
- name: Upload zip for Windows | |
if: fromJson(matrix.target).goos == 'windows' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: koi-${{ fromJson(matrix.target).rid }}-${{ github.sha }}.zip | |
path: build/dist/koishi.zip | |
- name: Upload msi for Windows | |
if: fromJson(matrix.target).goos == 'windows' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: koi-${{ fromJson(matrix.target).rid }}-${{ github.sha }}.msi | |
path: build/dist/koishi.msi | |
- name: Upload zip for macOS | |
if: fromJson(matrix.target).goos == 'darwin' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: koi-${{ fromJson(matrix.target).rid }}-${{ github.sha }}.zip | |
path: build/dist/koishi.zip | |
- name: Upload dmg for macOS | |
if: fromJson(matrix.target).goos == 'darwin' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: koi-${{ fromJson(matrix.target).rid }}-${{ github.sha }}.dmg | |
path: build/dist/koishi.dmg | |
- name: Upload pkg for macOS | |
if: fromJson(matrix.target).goos == 'darwin' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: koi-${{ fromJson(matrix.target).rid }}-${{ github.sha }}.pkg | |
path: build/dist/koishi.pkg | |
- name: Upload zip for Linux | |
if: fromJson(matrix.target).goos == 'linux' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: koi-${{ fromJson(matrix.target).rid }}-${{ github.sha }}.zip | |
path: build/dist/koishi.zip | |
- name: Upload AppImage for Linux | |
if: fromJson(matrix.target).goos == 'linux' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: koi-${{ fromJson(matrix.target).rid }}-${{ github.sha }}.AppImage | |
path: build/dist/Koishi.AppImage | |
- name: Upload Release Files for Windows | |
if: startsWith(github.ref, 'refs/tags/') && fromJson(matrix.target).goos == 'windows' | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACTIONS_DEPLOY_MODULE_KEY }} | |
run: | | |
mv build/dist/koishi.zip build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.zip | |
mv build/dist/koishi.msi build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.msi | |
gh release upload ${{ steps.tag.outputs.version }} \ | |
build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.zip \ | |
build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.msi | |
shell: bash | |
- name: Upload Release Files for macOS | |
if: startsWith(github.ref, 'refs/tags/') && fromJson(matrix.target).goos == 'darwin' | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACTIONS_DEPLOY_MODULE_KEY }} | |
run: | | |
mv build/dist/koishi.zip build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.zip | |
mv build/dist/koishi.dmg build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.dmg | |
mv build/dist/koishi.pkg build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.pkg | |
gh release upload ${{ steps.tag.outputs.version }} \ | |
build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.zip \ | |
build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.dmg \ | |
build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.pkg | |
shell: bash | |
- name: Upload Release Files for Linux | |
if: startsWith(github.ref, 'refs/tags/') && fromJson(matrix.target).goos == 'linux' | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACTIONS_DEPLOY_MODULE_KEY }} | |
run: | | |
mv build/dist/koishi.zip build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.zip | |
mv build/dist/Koishi.AppImage build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.AppImage | |
gh release upload ${{ steps.tag.outputs.version }} \ | |
build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.zip \ | |
build/dist/koishi-desktop-${{ fromJson(matrix.target).rid }}-${{ steps.tag.outputs.version }}.AppImage | |
shell: bash |