Skip to content

Commit 8335ae9

Browse files
committed
added github workflows
1 parent 81f62c3 commit 8335ae9

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Plugin asset/readme update
2+
on:
3+
push:
4+
branches:
5+
- master
6+
paths:
7+
- '.wordpress-org/**'
8+
- 'readme.txt'
9+
jobs:
10+
master:
11+
name: Push to master
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@master
15+
- name: WordPress.org plugin asset/readme update
16+
uses: 10up/action-wordpress-plugin-asset-update@master
17+
env:
18+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
19+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
20+
SLUG: auto-deselect-uncategorized
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Deploy to WordPress.org
2+
on:
3+
push:
4+
tags-ignore:
5+
- 'v*-alpha*'
6+
- 'v*-beta*'
7+
- 'v*-rc*'
8+
jobs:
9+
tag:
10+
name: New tag
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@master
14+
- name: WordPress Plugin Deploy
15+
uses: 10up/action-wordpress-plugin-deploy@master
16+
env:
17+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
18+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
19+
SLUG: auto-deselect-uncategorized

0 commit comments

Comments
 (0)