Merge pull request #1877 from jellyfin/bump-bugfix-to-214 #366
Workflow file for this run
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
# Builds the production version of the app | |
name: build-prod | |
on: | |
push: | |
branches: | |
- master | |
- "*.*.z" | |
jobs: | |
prod: | |
if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'release-prep') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 | |
with: | |
node-version: "lts/*" | |
cache: "npm" | |
- name: NPM install | |
run: npm ci | |
- name: Install roku module dependencies | |
run: npm run ropm | |
- name: Build app for production | |
run: npm run build-prod | |
- uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4 | |
with: | |
name: Jellyfin-Roku-v${{ env.newManVersion }}-${{ github.sha }} | |
path: ${{ github.workspace }}/build/staging | |
if-no-files-found: error |