chore: migrate CI/CD to Gitea Actions
Update README / update-readme (push) Successful in 16s
Deploy Microsite / build (push) Failing after 24s
Deploy Microsite / deploy (push) Has been skipped

This commit is contained in:
2026-06-12 23:14:27 -07:00
parent 964951cb1d
commit b709d1161f
2 changed files with 0 additions and 0 deletions
-52
View File
@@ -1,52 +0,0 @@
name: Deploy Microsite
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
env:
BASE_HREF: /${{ github.event.repository.name }}/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./_site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4