-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (34 loc) · 982 Bytes
/
wpcom.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
name: Publish Website
on:
push:
branches:
- main
workflow_dispatch:
jobs:
Build-Artifact-Action:
name: Build-Artifact-Action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm install
- run: npm run build
- name: Upload the artifact
uses: actions/upload-artifact@v4
with:
name: wpcom
path: |
.
!style.css
!node_modules
!README.md
!package.json
!package-lock.json
!.editorconfig
!.git
!.gitignore
!src
!webpack.config.js