Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
permissions:
contents: write
id-token: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
with:
repository: neuroneural/BrainStorms.wiki
path: BrainStorms.wiki
- name: Wiki
run: |
git config --global user.name "${{secrets.GIT_USER}}"
git config --global user.email "${{secrets.GIT_GMAIL}}"
cd BrainStorms.wiki
rm -rf *
cp -r ../wikifiles/* .
cp ../Home.md .
python ../sidebar.py
git add .
git commit -m "update"
git push