Skip to content

Commit 16588ba

Browse files
committed
converted main.workflow to Actions V2 yml files
1 parent c9df84f commit 16588ba

File tree

3 files changed

+33
-32
lines changed

3 files changed

+33
-32
lines changed

.github/main.workflow

Lines changed: 0 additions & 32 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on: push
2+
name: Asset/readme update
3+
jobs:
4+
filtersForGitHubActions:
5+
name: Filters for GitHub Actions
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@master
9+
- name: Filters for GitHub Actions
10+
uses: actions/bin/filter@master
11+
with:
12+
args: branch master
13+
- name: Plugin Asset Update
14+
uses: 10up/action-wordpress-plugin-asset-update@master
15+
env:
16+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
17+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}

.github/workflows/push-deploy.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on: push
2+
name: Deploy
3+
jobs:
4+
tag:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@master
8+
- name: tag
9+
uses: actions/bin/filter@master
10+
with:
11+
args: tag
12+
- name: WordPress Plugin Deploy
13+
uses: 10up/action-wordpress-plugin-deploy@master
14+
env:
15+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
16+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}

0 commit comments

Comments
 (0)