Skip to content

implement subtract (#84) #133

implement subtract (#84)

implement subtract (#84) #133

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: bun install
- name: Deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
npm run predeploy
# push to gh-pages branch
git checkout -b gh-pages
mv cosmos-export docs
git add -f docs
git commit -m "Deploy"
git push -f origin gh-pages