tangled
alpha
login
or
join now
flo-bit.dev
/
svelte-atproto-client-oauth
6
fork
atom
simple atproto oauth for static svelte apps
flo-bit.dev/svelte-atproto-client-oauth/
6
fork
atom
overview
issues
pulls
pipelines
update deploy
Florian
1 month ago
963bbf37
893434f9
+6
-7
1 changed file
expand all
collapse all
unified
split
.github
workflows
deploy.yml
+6
-7
.github/workflows/deploy_gh_pages.yml
.github/workflows/deploy.yml
···
12
12
- name: Checkout
13
13
uses: actions/checkout@v4
14
14
15
15
-
- name: Install Node.js
15
15
+
- name: Setup Node.js environment
16
16
uses: actions/setup-node@v4
17
17
with:
18
18
-
node-version: 18
19
19
-
cache: npm
18
18
+
node-version: 20
19
19
+
cache: 'pnpm'
20
20
21
21
- name: Install dependencies
22
22
-
run: npm ci
22
22
+
run: pnpm install
23
23
24
24
-
- name: build
24
24
+
- name: Build
25
25
+
run: pnpm build
25
26
env:
26
27
BASE_PATH: '/${{ github.event.repository.name }}'
27
27
-
run: |
28
28
-
npm run build
29
28
30
29
- name: Upload Artifacts
31
30
uses: actions/upload-pages-artifact@v3