-
Notifications
You must be signed in to change notification settings - Fork 1.3k
83 lines (74 loc) · 2.8 KB
/
deploy-docs.yml
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
# a workflow that runs after the "Qwik CI" workflow is successful
# and deploys the documentation to CloudFlare Pages.
name: Deploy Docs
on:
workflow_run:
workflows: ['Qwik CI']
types:
- completed
permissions:
actions: read
deployments: write
contents: read
pull-requests: write
jobs:
deploy:
name: Cloudflare Pages Deployment
if: >
github.repository == 'QwikDev/qwik'
runs-on: ubuntu-latest
steps:
- name: Check for docs artifact
id: check-artifact
uses: actions/github-script@v7
with:
script: |
try {
const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: context.payload.workflow_run.id
});
const hasDocsArtifact = artifacts.data.artifacts.some(a => a.name === 'artifact-docs');
core.setOutput('has-docs', hasDocsArtifact);
// Always return success from this script
return true;
} catch (error) {
console.error('Error checking for artifacts:', error);
core.setOutput('has-docs', false);
// Always return success from this script
return true;
}
- name: Checkout code
if: ${{ steps.check-artifact.outputs['has-docs'] == true }}
uses: actions/checkout@v4
- name: Download docs artifact
if: ${{ steps.check-artifact.outputs['has-docs'] == true }}
uses: actions/download-artifact@v4
with:
name: artifact-docs
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }}
path: packages/docs
- name: Verify dist directory exists
if: ${{ steps.check-artifact.outputs['has-docs'] == true }}
run: |
ls -la packages/docs
if [ ! -d "packages/docs/dist" ]; then
echo "Creating dist directory"
mkdir -p packages/docs/dist
cp -r packages/docs/* packages/docs/dist/ || true
fi
# not the official version, so be careful when updating
- name: Deploy to Cloudflare Pages
if: ${{ steps.check-artifact.outputs['has-docs'] == true }}
uses: AdrianGonz97/refined-cf-pages-action@6c0d47ff7c97c48fa702b6d9f71f7e3a7c30c7d8
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: 'qwik-docs'
directory: packages/docs/dist
githubToken: ${{ secrets.GITHUB_TOKEN }}
- name: Skip message when no docs artifact
if: ${{ steps.check-artifact.outputs['has-docs'] != true }}
run: echo "No docs artifact found, skipping deployment"