Skip to content

Import songs from RC- batch 1 #1102

Import songs from RC- batch 1

Import songs from RC- batch 1 #1102

Workflow file for this run

name: 'CI (Continuous Integration) & Auto Update Songs Meta'
on: [pull_request]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: npm i
- name: Build
run: npm run build:ci
env:
CI: true
FORCE_COLOR: 2
AutoUpdateMeta:
needs: Build
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: npm i
- name: Update meta (hashes, renames, etc.)
run: |
npm run meta:ci
git config user.name github-actions
git config user.email [email protected]
git add -A
git diff --quiet && git diff --staged --quiet || git commit -am "[Bot] I have added all of the meta information about the content to it.
>
>
skip-checks: true"
env:
CI: true
FORCE_COLOR: 2