Fix casing

This commit is contained in:
ConfusedPolarBear 2022-06-16 19:09:44 -05:00
parent 8ac8d3ac9d
commit 25783a1953

View File

@ -4,7 +4,7 @@ on:
release: release:
types: [published] types: [published]
workflow_dispatch: workflow_dispatch:
env: env:
REGISTRY: ghcr.io REGISTRY: ghcr.io
IMAGE_NAME: jellyfin-intro-skipper IMAGE_NAME: jellyfin-intro-skipper
@ -16,7 +16,7 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [14.x] node-version: [14.x]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -24,7 +24,7 @@ jobs:
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Get npm cache directory - name: Get npm cache directory
id: npm-cache-dir id: npm-cache-dir
run: | run: |
@ -38,14 +38,14 @@ jobs:
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: | restore-keys: |
${{ runner.os }}-node- ${{ runner.os }}-node-
- name: Checkout modified web interface - name: Checkout modified web interface
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
repository: ConfusedPolarBear/jellyfin-web repository: ConfusedPolarBear/jellyfin-web
ref: intros ref: intros
path: web path: web
- name: Store commit of web interface - name: Store commit of web interface
id: web-commit id: web-commit
run: | run: |
@ -79,4 +79,4 @@ jobs:
file: docker/Dockerfile file: docker/Dockerfile
context: docker/ context: docker/
push: true push: true
tags: ConfusedPolarBear/jellyfin-intro-skipper:${{ steps.web-commit.outputs.commit }} tags: confusedpolarbear/jellyfin-intro-skipper:${{ steps.web-commit.outputs.commit }}