Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementation of Azure Pipelines for building *.WGT files and releasing them to Github #17

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Setup explicit build command
Building and installing should be separate steps for clarity.
  • Loading branch information
robinkruyt committed Apr 20, 2020
commit 2053c12e02a44546934d7df01dcdacf305c12138
3 changes: 2 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
displayName: Install Jellyfin Tizen
inputs:
script: |
JELLYFIN_WEB_DIR=$JELLYFIN_WEB_DIR/dist yarn install
yarn install
JELLYFIN_WEB_DIR=$JELLYFIN_WEB_DIR/dist yarn build
failOnStderr: false

- task: CmdLine@2
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "git+https://github.com/jellyfin/jellyfin-tizen.git"
},
"scripts": {
"postinstall": "gulp"
"build": "gulp"
},
"dependencies": {
"del": "^5.1.0",
Expand Down