Skip to content

Commit ee454a8

Browse files
authored
Add an empty Pages deployment
Our repo is too large to deploy to Pages, which is why we use this repo on an external server. However, GitHub keeps trying, and failing, to publish this repo on every commit. For now, I've just kept this around to preserve the redirects from `matplotlib.github.com`. This change adds a custom workflow that just fills out `CNAME` and publishes that as the "website" on Pages. This avoids both the checkout and the upload of over 10GB that just errors out.
1 parent 1fafb9d commit ee454a8

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/pages.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Deploy static content to Pages
3+
4+
on:
5+
push:
6+
branches: ["main"]
7+
workflow_dispatch:
8+
9+
permissions:
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
deploy:
19+
environment:
20+
name: github-pages
21+
url: ${{ steps.deployment.outputs.page_url }}
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Setup Pages
25+
run: |
26+
mkdir pages
27+
echo matplotlib.org > pages/CNAME
28+
- name: Upload Pages artifact
29+
uses: actions/upload-pages-artifact@v3
30+
with:
31+
path: 'pages'
32+
- name: Deploy to GitHub Pages
33+
id: deployment
34+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)