File tree Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1
1
/.git
2
2
/.github
3
3
/assets
4
+ /dist
4
5
/test
6
+ /vendor
5
7
/.distignore
6
8
/.editorconfig
7
9
/.gitattributes
Original file line number Diff line number Diff line change 1
1
/.github export-ignore
2
2
/assets export-ignore
3
+ /dist export-ignore
3
4
/test export-ignore
4
5
.distignore export-ignore
5
6
.gitattributes export-ignore
Original file line number Diff line number Diff line change
1
+ name : Plugin check
2
+ on :
3
+ push :
4
+ branches : [ stable', 'release/*' ]
5
+ pull_request :
6
+ branches : [ stable ]
7
+ jobs :
8
+ check :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout
12
+ uses : actions/checkout@v4
13
+
14
+ - name : Package plugin
15
+ run : |
16
+ mkdir -p ./dist
17
+ tail -n +6 README.md > README.md.tmp && mv README.md.tmp README.md
18
+ rsync -rc --exclude-from=.distignore ./ ./dist/statify-blacklist --delete --delete-excluded
19
+ - name : Check WP plugin
20
+ uses : wordpress/plugin-check-action@v1
21
+ with :
22
+ build-dir : ./dist/statify-blacklist
You can’t perform that action at this time.
0 commit comments