Transition to Gitea workflows

This commit is contained in:
2026-01-16 23:01:03 +00:00
parent b6f74d7905
commit 32ec448ff2
3 changed files with 94 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
name: Build and Deploy to GH Pages
on: [workflow_dispatch]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install and build
run: |
npm install
npm run build
env:
REACT_APP_GA_MID: ${{ secrets.REACT_APP_GA_MID }}
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}