Skip to content

Commit c5dd507

Browse files
aregmAreg Melik-Adamyancursoragent
authored
Fix broken CI deploy and pages workflows (#53)
- deploy-kind.yaml: Remove push/PR triggers, keep only manual workflow_dispatch. The job requires a self-hosted runner with Docker which is not currently registered, causing jobs to queue forever. - publish-pages.yaml: Bump configure-pages v3->v5, upload-pages-artifact v2->v3, deploy-pages v2->v4. The old v2 actions depend on deprecated upload-artifact v3 which GitHub now blocks. Co-authored-by: Areg Melik-Adamyan <areg@sphynx.local> Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent f1bae28 commit c5dd507

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/deploy-kind.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@ name: Single node cluster with Kind
22

33
# Controls when the workflow will run
44
on:
5-
# Triggers the workflow on push or pull request events but only for the main branch
6-
push:
7-
branches: [ main ]
8-
pull_request:
9-
branches: [ main ]
10-
# Allows you to run this workflow manually from the Actions tab
5+
# Manual trigger only - requires a self-hosted runner with Docker
116
workflow_dispatch:
127

138
env:

.github/workflows/publish-pages.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
- name: Checkout
3030
uses: actions/checkout@v4
3131
- name: Setup Pages
32-
uses: actions/configure-pages@v3
32+
uses: actions/configure-pages@v5
3333
- name: Build with Jekyll
3434
uses: actions/jekyll-build-pages@v1
3535
with:
3636
source: ./docs
3737
destination: ./_site
3838
- name: Upload artifact
39-
uses: actions/upload-pages-artifact@v2
39+
uses: actions/upload-pages-artifact@v3
4040

4141
# Deployment job
4242
deploy:
@@ -48,4 +48,4 @@ jobs:
4848
steps:
4949
- name: Deploy to GitHub Pages
5050
id: deployment
51-
uses: actions/deploy-pages@v2
51+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)