forked from starknet-io/get-starknet
-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (38 loc) · 1.05 KB
/
github-page.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Deploy to GitHub Pages
on:
workflow_dispatch:
inputs:
branch:
description: "Branch to deploy from"
required: true
default: "main"
permissions:
id-token: write
contents: read
pages: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.branch }} # Use the selected branch
- name: Set up Node.js (required if you're using a static site generator)
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies with pnpm
run: pnpm install --no-frozen-lockfile
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload Artifact
uses: actions/upload-pages-artifact@v2
with:
# upload entire directory
path: "./e2e/dist"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2