Skip to content

Commit

Permalink
converted main.workflow to Actions V2 yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
m1guelpf committed Oct 6, 2019
1 parent c9df84f commit 16588ba
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 32 deletions.
32 changes: 0 additions & 32 deletions .github/main.workflow

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/push-asset-readme-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on: push
name: Asset/readme update
jobs:
filtersForGitHubActions:
name: Filters for GitHub Actions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Filters for GitHub Actions
uses: actions/bin/filter@master
with:
args: branch master
- name: Plugin Asset Update
uses: 10up/action-wordpress-plugin-asset-update@master
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
16 changes: 16 additions & 0 deletions .github/workflows/push-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on: push
name: Deploy
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: tag
uses: actions/bin/filter@master
with:
args: tag
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@master
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}

0 comments on commit 16588ba

Please sign in to comment.