-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (44 loc) · 1.01 KB
/
build.yml
File metadata and controls
53 lines (44 loc) · 1.01 KB
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
name: build
on:
push:
branches:
- master
- develop
paths-ignore:
- '**.md'
tags:
- 'v*'
pull_request:
branches:
- master
- develop
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/determinate-nix-action@v3
- name: Build all checks and outputs
run: |
nix develop ./dev -c om ci
cd dev
nix develop -c om ci
- name: Build plugin zip
run: |
nix build .#wp2static
cp result/wp2static.zip plugin.zip
- name: Upload plugin as artifact
uses: actions/upload-artifact@v4
with:
name: plugin
path: plugin.zip
- name: Create GitHub Release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
files: plugin.zip