alpha
Login
or
Join now
flo-bit.dev
/
svelte-cloudflare-statusphere
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/svelte-cloudflare-statusphere.
statusphere.atmo.tools
atproto
cloudflare-workers
oauth
svelte
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
remove ci
author
Florian
date
4 months ago
(Feb 28, 2026, 8:31 PM +0100)
commit
89b01718
89b01718aa041c11119f03dd948bfb73d4aeac40
parent
31164d56
31164d56edba86bf4b4c224369e82b07ac980439
-53
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
deploy.yml
-53
.github/workflows/deploy.yml
Reviewed
···
1
1
-
name: Deploy to GitHub Pages
2
2
-
3
3
-
on:
4
4
-
push:
5
5
-
branches:
6
6
-
- main
7
7
-
8
8
-
jobs:
9
9
-
build_site:
10
10
-
runs-on: ubuntu-latest
11
11
-
steps:
12
12
-
- name: Checkout
13
13
-
uses: actions/checkout@v4
14
14
-
15
15
-
- uses: pnpm/action-setup@v4
16
16
-
with:
17
17
-
version: 10.24.0
18
18
-
19
19
-
- name: Setup Node.js environment
20
20
-
uses: actions/setup-node@v4
21
21
-
with:
22
22
-
node-version: 20
23
23
-
cache: 'pnpm'
24
24
-
25
25
-
- name: Install dependencies
26
26
-
run: pnpm install
27
27
-
28
28
-
- name: Build
29
29
-
run: pnpm build
30
30
-
env:
31
31
-
BASE_PATH: '/${{ github.event.repository.name }}'
32
32
-
33
33
-
- name: Upload Artifacts
34
34
-
uses: actions/upload-pages-artifact@v3
35
35
-
with:
36
36
-
path: 'build/'
37
37
-
38
38
-
deploy:
39
39
-
needs: build_site
40
40
-
runs-on: ubuntu-latest
41
41
-
42
42
-
permissions:
43
43
-
pages: write
44
44
-
id-token: write
45
45
-
46
46
-
environment:
47
47
-
name: github-pages
48
48
-
url: ${{ steps.deployment.outputs.page_url }}
49
49
-
50
50
-
steps:
51
51
-
- name: Deploy
52
52
-
id: deployment
53
53
-
uses: actions/deploy-pages@v4