Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/SL4F/CPClient
Browse files Browse the repository at this point in the history
  • Loading branch information
SL4F committed Sep 15, 2024
2 parents bca1198 + 808f230 commit 85a40d7
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
46 changes: 46 additions & 0 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build-Linux

on:

push:

branches:

- "**"

workflow_call:

jobs:

build:

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v3

- name: Install Node.js, NPM and Yarn

uses: actions/setup-node@v3

- name: Restore dependencies

run: yarn install

- name: Build Typescript

run: yarn build-tsc

- name: Build for Ubuntu

run: yarn build-linux

- name: Upload Artifacts

uses: actions/upload-artifact@v3

with:

name: artifacts
path: ./dist/
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ jobs:

name: artifacts

path: ./dist/CPClient Setup 2.0.1.exe
path: ./dist/

0 comments on commit 85a40d7

Please sign in to comment.