diff options
| -rw-r--r-- | .github/workflows/build.yml | 6 | ||||
| -rw-r--r-- | README.md | 10 | ||||
| -rw-r--r-- | package.json | 3 |
3 files changed, 17 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b61160f..d67be5d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,12 @@ jobs: os: [macos-latest, ubuntu-latest, windows-latest] steps: + - name: Install dependencies + if: runner.os == 'Linux' + run: | + sudo apt update + sudo apt install --no-install-recommends -y libopenjp2-tools rpm bsdtar + sudo snap install snapcraft --classic - name: Check out Git repository uses: actions/checkout@v1 @@ -1,2 +1,10 @@ # YouTube TV Client 2.0 -Made from NodeJS and Electron
\ No newline at end of file +Basically a browser that uses Samsung Smart TV as the user agent and it goes to `youtube.com/tv`. + +Made from NodeJS and Electron + +Start the program +``` +yarn install +yarn start +``` diff --git a/package.json b/package.json index 8fdcb01..60c6138 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,8 @@ "zip", "portable", "nsis" - ] + ], + "license": "LICENSE" }, "mac": { "target": [ |
