-
-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (33 loc) · 932 Bytes
/
docs-deploy.yml
File metadata and controls
34 lines (33 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Docs Deploy
on:
push:
branches: [master]
jobs:
deploy:
runs-on: ubuntu-latest
environment: Production
permissions:
contents: read
packages: write
deployments: write
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: vuetifyjs/setup-action@master
- run: pnpm run build:docs
env:
VITE_API_SERVER_URL: ${{ vars.API_SERVER_URL }}
- name: Link Checker
uses: lycheeverse/lychee-action@v2
with:
lycheeVersion: v0.22.0
args: --config lychee.toml './apps/docs/dist'
fail: false
- uses: vuetifyjs/coolify-action@master
with:
imageName: v0-docs
dockerfilePath: ./apps/docs/Dockerfile
token: ${{ secrets.GITHUB_TOKEN }}
coolifyWebhook: ${{ secrets.COOLIFY_WEBHOOK }}
coolifySecret: ${{ secrets.COOLIFY_TOKEN }}