Spaces:
Running
Running
Commit ·
910ed77
1
Parent(s): 6ab0441
fix(ci): auto-enable Pages on first deploy
Browse filesGitHub Pages requires explicit enablement before configure-pages can
query the site. Add 'enablement: true' so the first workflow run
enables Pages automatically.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
.github/workflows/deploy.yml
CHANGED
|
@@ -22,6 +22,8 @@ jobs:
|
|
| 22 |
steps:
|
| 23 |
- uses: actions/checkout@v4
|
| 24 |
- uses: actions/configure-pages@v4
|
|
|
|
|
|
|
| 25 |
- uses: actions/upload-pages-artifact@v3
|
| 26 |
with:
|
| 27 |
path: '.'
|
|
|
|
| 22 |
steps:
|
| 23 |
- uses: actions/checkout@v4
|
| 24 |
- uses: actions/configure-pages@v4
|
| 25 |
+
with:
|
| 26 |
+
enablement: true
|
| 27 |
- uses: actions/upload-pages-artifact@v3
|
| 28 |
with:
|
| 29 |
path: '.'
|