Skip to content

Fix matchups not loading if one team has no central IDs #77

Fix matchups not loading if one team has no central IDs

Fix matchups not loading if one team has no central IDs #77

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
lint-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout ipl-overlay-controls
uses: actions/checkout@v4
with:
repository: 'inkfarer/ipl-overlay-controls'
token: ${{ secrets['GITHUB_TOKEN'] }}
ref: 'brackets'
fetch-depth: 0
path: ./ipl-overlay-controls
- name: Checkout relay-nodecg-connector
uses: actions/checkout@v4
with:
repository: 'IPLSplatoon/relay-nodecg-connector'
token: ${{ secrets['GH_PAT'] }}
fetch-depth: 0
path: ./relay-nodecg-connector
- name: Checkout this repository
uses: actions/checkout@v4
with:
token: ${{ secrets['GITHUB_TOKEN'] }}
ref: ${{ github.ref }}
fetch-depth: 0
path: ./sj-overlays
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
cache-dependency-path: ./sj-overlays/package-lock.json
- name: Install NPM dependencies
working-directory: ./sj-overlays
run: npm ci
env:
GSAP_AUTH: ${{ secrets.GSAP_AUTH }}
- name: Run ESLint on source
working-directory: ./sj-overlays
run: npm run lint
- name: Set up GitHub for SSH access
if: github.ref == 'refs/heads/master'
uses: webfactory/ssh-agent@master
with:
ssh-private-key: ${{ secrets['GH_SSH'] }}
- name: Set git config
if: github.ref == 'refs/heads/master'
working-directory: ./sj-overlays
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Merge master branch into build branch
if: github.ref == 'refs/heads/master'
continue-on-error: true
working-directory: ./sj-overlays
run: |
git checkout master
git checkout build
git merge master
- name: Build
if: github.ref == 'refs/heads/master'
working-directory: ./sj-overlays
run: |
npm run clean
npm run build
- name: Commit built files
if: github.ref == 'refs/heads/master'
id: commit
continue-on-error: true
working-directory: ./sj-overlays
run: |
git add -f graphics dashboard extension shared
git commit -m "Build result from master branch" -a
- name: Push built files to "build" branch
if: github.ref == 'refs/heads/master'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets['GITHUB_TOKEN'] }}
branch: build
directory: ./sj-overlays