Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [main, development]
branches: [main]
pull_request:
branches: [main, development]
branches: [main]
workflow_call:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Docker
on:
push:
branches: [main, development]
branches: [main]
tags: ["v*"]
pull_request:
paths: ["Dockerfile", "docker-compose.yml", ".dockerignore"]
Expand Down
19 changes: 0 additions & 19 deletions .github/workflows/merge-gate.yml

This file was deleted.

8 changes: 8 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,11 @@ jobs:
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

deploy-docs:
runs-on: ubuntu-latest
needs: release-please
if: ${{ needs.release-please.outputs.release_created }}
steps:
- name: Trigger Vercel docs deployment
run: curl -X POST "${{ secrets.VERCEL_DOCS_DEPLOY_HOOK }}"
23 changes: 0 additions & 23 deletions .github/workflows/release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion docs/vercel.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ignoreCommand": "git diff --quiet HEAD^ HEAD -- . ../package.json",
"ignoreCommand": "exit 0",
"installCommand": "cd .. && npm install --include=dev --ignore-scripts",
"buildCommand": "cd .. && npx vitepress build docs",
"outputDirectory": ".vitepress/dist"
Expand Down
Loading