Skip to content

#303 [Bug] Extra Networks not loading Checkpoints in subfolders #41

#303 [Bug] Extra Networks not loading Checkpoints in subfolders

#303 [Bug] Extra Networks not loading Checkpoints in subfolders #41

Workflow file for this run

name: Build
on:
push:
branches:
- main
paths:
- 'src/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm install
working-directory: ./src
- name: Build
run: npm run build
working-directory: ./src
- name: Configure Git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
- name: Push javascript
if: success()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git add -f ./javascript/*
git commit -m "Build"
git push origin main