Skip to content

Commit f3adc07

Browse files
Merge pull request #11 from PaystackOSS/feat/github-actions-deploy
Add Github actions to auto deploy to WP.org
2 parents f6e9857 + a893bee commit f3adc07

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Deploy to WordPress.org
2+
on:
3+
push:
4+
tags:
5+
- "*"
6+
jobs:
7+
tag:
8+
name: Deploy Plugin
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@master
12+
- name: Build # Remove or modify this step as needed
13+
run: |
14+
npm install
15+
npm run build
16+
- name: WordPress Plugin Deploy
17+
uses: 10up/action-wordpress-plugin-deploy@stable
18+
env:
19+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
20+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
21+
SLUG: paystack-memberpress

0 commit comments

Comments
 (0)