Initial commit

This commit is contained in:
xbgmsharp
2024-02-23 20:54:05 +00:00
commit 74566e06de
37 changed files with 11529 additions and 0 deletions

20
.github/workflows/deploy.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
on:
push:
branches:
- landingpage
jobs:
deploy_on_gh_pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.1.3
with:
node-version: '16'
- uses: bahmutov/npm-install@v1
- run: yarn build
- run: git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${{github.repository}}.git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npx -y -p gh-pages@3.1.0 gh-pages -d build --add -u "github-actions-bot <actions@github.com>"