Skip to content

Commit 23d210d

Browse files
authored
Merge pull request #40 from nicomiguelino/generate-plugin-zip-as-artifact
chore(ci): create a workflow file for uploading the plugin package as artifact
2 parents 6c9554a + 680e551 commit 23d210d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Generate WordPress Plugin Package
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build-and-upload:
13+
runs-on: ubuntu-24.04
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- name: Package WordPress Plugin
19+
run: |
20+
./bin/build.sh
21+
22+
- name: Upload Package As Artifact
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: screenly-cast
26+
path: build/screenly-cast

0 commit comments

Comments
 (0)