Update .gitea/workflows/build.yml
Some checks failed
Build and Publish TVJ EPG Image / build (push) Failing after 0s

This commit is contained in:
2026-02-02 10:42:55 -05:00
parent 231f1a676a
commit 65e07f5d48

View File

@@ -10,6 +10,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# IMPORTANT: Gitea checkout (no Node required)
- name: Checkout repository - name: Checkout repository
uses: gitea/checkout@v4 uses: gitea/checkout@v4
@@ -24,9 +25,9 @@ jobs:
VERSION="$(cat VERSION | tr -d ' \n')" VERSION="$(cat VERSION | tr -d ' \n')"
echo "version=$VERSION" >> $GITHUB_OUTPUT echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Registry login - name: Log in to container registry
env: env:
REGISTRY: ${{ vars.REGISTRY }} REGISTRY: ${{ vars.REGISTRY }} # e.g. loxthelion.com OR ghcr.io
REGISTRY_USER: ${{ secrets.REGISTRY_USER }} REGISTRY_USER: ${{ secrets.REGISTRY_USER }}
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }} REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
run: | run: |
@@ -37,7 +38,7 @@ jobs:
- name: Build image (multi-tag) - name: Build image (multi-tag)
env: env:
REGISTRY: ${{ vars.REGISTRY }} REGISTRY: ${{ vars.REGISTRY }}
IMAGE: ${{ vars.IMAGE }} IMAGE: ${{ vars.IMAGE }} # e.g. lyncolnmd/tvj-epg OR tvj-epg
VERSION: ${{ steps.version.outputs.version }} VERSION: ${{ steps.version.outputs.version }}
run: | run: |
SHORT_SHA="${GITHUB_SHA::7}" SHORT_SHA="${GITHUB_SHA::7}"