FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
gulp-devstack/.github/workflows/github-pages-deploy.yml at main · cebreus/gulp-devstack · GitHub
cebreus
/
gulp-devstack
Public template
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Issues
0
Pull requests
6
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
gulp-devstack
/
.github
/
workflows
/
github-pages-deploy.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
37 lines (30 loc) · 816 Bytes
Breadcrumbs
gulp-devstack
/
.github
/
workflows
/
github-pages-deploy.yml
Copy path
File metadata and controls
37 lines (30 loc) · 816 Bytes
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
name
:
Build and Deploy
on
:
push
:
branches
:
['master']
workflow_dispatch
:
branches
:
['master', 'develop']
permissions
:
contents
:
write
jobs
:
build-and-deploy
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout 🔄
uses
:
actions/checkout@v3
-
name
:
Cache dependencies 🗄️
id
:
cache
uses
:
actions/cache@v3
with
:
path
:
./node_modules
key
:
modules-${{ hashFiles('package-lock.json') }}
-
name
:
Install dependencies ⬇️
if
:
steps.cache.outputs.cache-hit != 'true'
run
:
npm ci --legacy-peer-deps
-
name
:
Build project 🔨
run
:
|
npm run build
-
name
:
Deploy to GitHub Pages 🚀
uses
:
JamesIves/github-pages-deploy-action@v4
with
:
folder
:
build
Back
|
FazBrowse Home
|
New Git URL