forked from google/wikiloop-doublecheck
-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (26 loc) · 820 Bytes
/
deploy.yml
File metadata and controls
31 lines (26 loc) · 820 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
name: Deploy
on:
push:
tags:
- "v5.*"
jobs:
deploy-toolforge:
name: Deploy to Toolforge
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Placeholder — Toolforge deployment
run: |
echo "Toolforge deployment not yet configured."
echo "Tag: ${{ github.ref_name }}"
echo "This job will deploy the server + web SPA to Toolforge."
deploy-vercel:
name: Deploy to Vercel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Placeholder — Vercel deployment
run: |
echo "Vercel deployment may be handled automatically via Vercel GitHub integration."
echo "Tag: ${{ github.ref_name }}"
echo "If manual deployment is needed, add Vercel CLI steps here."