-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (92 loc) · 2.81 KB
/
Copy pathdeploy.yml
File metadata and controls
104 lines (92 loc) · 2.81 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Deploy to GitHub Pages
# Builds the Astro site and publishes it to GitHub Pages on every push to main.
# Pages "Source" must be set to "GitHub Actions" (Settings → Pages).
# A public/CNAME file points the deployment at the custom domain; once the DNS
# is configured the site goes live at https://mission.managed-code.com.
on:
push:
branches: [main]
workflow_dispatch:
permissions:
actions: read
contents: read
pages: write
id-token: write
# Allow one concurrent deployment; don't cancel an in-progress publish.
concurrency:
group: pages
cancel-in-progress: false
jobs:
# Gate the deploy on the full Playwright matrix, including visual regression.
# This is the automatic test pipeline for pushes to main; deploy never starts
# unless the complete browser suite is green.
test:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.61.1-jammy
env:
HOME: /root
CI: 'true'
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Install dependencies
run: npm ci
- name: Full Playwright matrix (deploy gate)
run: npm test
- name: Upload Playwright report
if: always()
uses: actions/upload-artifact@v7
with:
name: deploy-playwright-report
path: playwright-report/
retention-days: 14
- name: Upload test results
if: always()
uses: actions/upload-artifact@v7
with:
name: deploy-test-results
path: test-results/
if-no-files-found: ignore
retention-days: 14
build:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Build (favicons + Astro → dist/)
run: npm run build
env:
NODE_ENV: production
PUBLIC_RECAPTCHA_SITE_KEY: ${{ vars.PUBLIC_RECAPTCHA_SITE_KEY }}
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v5
with:
path: ./dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout deployment script
uses: actions/checkout@v7
- name: Deploy to GitHub Pages
id: deployment
uses: actions/github-script@v9
env:
PAGES_DEPLOY_TIMEOUT_MS: '2700000'
PAGES_DEPLOY_POLL_INTERVAL_MS: '15000'
with:
script: |
const deployPages = require(`${process.env.GITHUB_WORKSPACE}/.github/scripts/deploy-pages.cjs`);
await deployPages({ github, context, core });