forked from yilozt/rounded-window-corners
-
Notifications
You must be signed in to change notification settings - Fork 10
40 lines (33 loc) · 835 Bytes
/
build.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
name: Build the extension
on:
push:
paths-ignore:
- README.md
pull_request:
paths-ignore:
- README.md
workflow_dispatch:
jobs:
build:
name: Build the extension
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Set up node.js
uses: actions/setup-node@v4
with:
node-version: latest
cache: 'npm'
- name: Set up just
uses: extractions/setup-just@v2
- name: Install gettext
run: sudo apt install gettext
- name: Build the extension
run: just build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: [email protected]
path: _build/
compression-level: 9