Skip to content

Commit 2792bd9

Browse files
committed
Add GitHub Actions workflow to zip plugin on release
1 parent 29026f7 commit 2792bd9

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/package.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Package Plugin
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
zip-plugin:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@v3
13+
14+
- name: Zip plugin
15+
run: zip -r proxy-aware-https-fix.zip proxy-aware-https-fix.php README.md LICENSE CHANGELOG.md
16+
17+
- name: Upload artifact
18+
uses: actions/upload-artifact@v3
19+
with:
20+
name: proxy-aware-https-fix
21+
path: proxy-aware-https-fix.zip
22+

0 commit comments

Comments
 (0)