-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies and fixes fullscreen shortcut (again)
- Loading branch information
Showing
4 changed files
with
51 additions
and
47 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,44 @@ | ||
name: Build/release | ||
|
||
on: | ||
- push | ||
|
||
jobs: | ||
release: | ||
runs-on: macos-12 | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Node.js, NPM and Yarn | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 | ||
|
||
- name: Install dependencies | ||
run: "npm install" | ||
|
||
- name: Brew install rpm | ||
uses: ConorMacBride/install-package@v1 | ||
with: | ||
brew: rpm | ||
|
||
- name: Compile to Javascript | ||
run: "npm run compile" | ||
|
||
- name: Build/release YouTube TV app | ||
uses: samuelmeuli/[email protected] | ||
with: | ||
# GitHub token, automatically provided to the action | ||
# (No need to define this secret in the repo settings) | ||
github_token: ${{ secrets.github_token }} | ||
|
||
# If the commit is tagged with a version (e.g. "v1.0.0"), | ||
# release the app after building | ||
release: ${{ startsWith(github.ref, 'refs/tags/v') }} | ||
# | ||
# This action does not work correctly, it should add the generated artifacts to a release | ||
# automatically, but it does not. | ||
# | ||
|
||
#name: Build/release | ||
# | ||
#on: | ||
# - push | ||
# | ||
#jobs: | ||
# release: | ||
# runs-on: macos-12 | ||
# | ||
# steps: | ||
# - name: Check out Git repository | ||
# uses: actions/checkout@v3 | ||
# | ||
# - name: Install Node.js, NPM and Yarn | ||
# uses: actions/setup-node@v3 | ||
# with: | ||
# node-version: 14 | ||
# | ||
# - name: Install dependencies | ||
# run: "npm install" | ||
# | ||
# - name: Brew install rpm | ||
# uses: ConorMacBride/install-package@v1 | ||
# with: | ||
# brew: rpm | ||
# | ||
# - name: Compile to Javascript | ||
# run: "npm run compile" | ||
# | ||
# - name: Build/release YouTube TV app | ||
# uses: samuelmeuli/[email protected] | ||
# with: | ||
# # GitHub token, automatically provided to the action | ||
# # (No need to define this secret in the repo settings) | ||
# github_token: ${{ secrets.github_token }} | ||
# | ||
# # If the commit is tagged with a version (e.g. "v1.0.0"), | ||
# # release the app after building | ||
# release: ${{ startsWith(github.ref, 'refs/tags/v') }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,6 @@ dist/ | |
msi/ | ||
msi-packager.js | ||
.DS_Store | ||
package-lock.json | ||
package-lock.json | ||
*.js | ||
!renderers/main/injection.js |
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
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