Skip to content

Commit 58bd7f6

Browse files
chore: fix pages
1 parent 73873e5 commit 58bd7f6

3 files changed

Lines changed: 34 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Pages Deployment
2+
3+
on:
4+
push:
5+
branches: [gh-pages]
6+
7+
jobs:
8+
# Build job
9+
build:
10+
# Specify runner + build & upload the static files as an artifact
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Build static files
14+
id: build
15+
run: sh build.sh
16+
17+
- name: Upload static files as artifact
18+
id: deployment
19+
uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action
20+
with:
21+
path: dist/
22+
23+
# Deployment job
24+
deploy:
25+
environment:
26+
name: github-pages
27+
url: ${{ steps.deployment.outputs.page_url }}
28+
runs-on: ubuntu-latest
29+
needs: build
30+
steps:
31+
- name: Deploy to GitHub Pages
32+
id: deployment
33+
uses: actions/deploy-pages@v4

build.sh

100644100755
File mode changed.

update.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"notes": "**Full Changelog**: https://github.com/DEVtheOPS/kore/commits/v0.1.0\n\n**Full Changelog**: https://github.com/DEVtheOPS/kore/commits/v0.1.0",
44
"pub_date": "2026-02-02T07:55:22Z",
55
"platforms": {}
6-
}
6+
}

0 commit comments

Comments
 (0)