Skip to content

Commit

Permalink
Merge branch 'development' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
peter9811 authored Aug 31, 2020
2 parents 49137bf + 4d5c860 commit ac8024e
Show file tree
Hide file tree
Showing 53 changed files with 6,456 additions and 6,153 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build

on:
- push
- pull_request

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 12
- run: yarn --frozen-lockfile
- run: node ./script/build-current-platform.js
- uses: actions/upload-artifact@v2
with:
name: dist-merged
path: |
dist/*.dmg
dist/*.exe
dist/*.AppImage
dist/*.blockmap
dist/*.yml
- uses: actions/upload-artifact@v2
with:
name: dist-${{ matrix.os }}
path: |
dist/*.dmg
dist/*.exe
dist/*.AppImage
dist/*.blockmap
dist/*.yml
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ To clone and run this repository you'll need [Git](https://git-scm.com) and [Nod

```bash
# Clone this repository
git clone https://github.com/adlerluiz/ytmdesktop
git clone https://github.com/ytmdesktop/ytmdesktop
# Go into the repository
cd ytmdesktop
# Install dependencies
Expand Down
Loading

0 comments on commit ac8024e

Please sign in to comment.