FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feast/.github/workflows/deploy-website.yml at stable · feast-dev/feast · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
feast-dev
/
feast
Public
Notifications
You must be signed in to change notification settings
Fork
1.4k
Star
7.2k
Code
Issues
218
Pull requests
191
Discussions
Actions
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
feast
/
.github
/
workflows
/
deploy-website.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
59 lines (49 loc) · 1.24 KB
Breadcrumbs
feast
/
.github
/
workflows
/
deploy-website.yml
Copy path
File metadata and controls
59 lines (49 loc) · 1.24 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
47
48
49
50
51
52
53
54
55
56
57
58
59
name
:
Deploy Website to GitHub Pages
on
:
push
:
branches
:
[ master, main ]
paths
:
-
'
infra/website/**
'
#
Allow manual triggers
workflow_dispatch
:
permissions
:
contents
:
read
pages
:
write
id-token
:
write
concurrency
:
group
:
"
pages
"
cancel-in-progress
:
true
jobs
:
build
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Setup Node.js
uses
:
actions/setup-node@v4
with
:
node-version
:
'
20
'
cache
:
'
npm
'
cache-dependency-path
:
infra/website/package-lock.json
-
name
:
Install dependencies
working-directory
:
infra/website
run
:
npm ci
-
name
:
Build site
working-directory
:
infra/website
run
:
npm run build
-
name
:
Setup Pages
uses
:
actions/configure-pages@v4
-
name
:
Upload artifact
uses
:
actions/upload-pages-artifact@v4
with
:
path
:
infra/website/dist
deploy
:
needs
:
build
environment
:
name
:
github-pages
url
:
${{ steps.deployment.outputs.page_url }}
runs-on
:
ubuntu-latest
steps
:
-
name
:
Deploy to GitHub Pages
id
:
deployment
uses
:
actions/deploy-pages@v4
Back
|
FazBrowse Home
|
New Git URL