Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 325df3a

Browse files
authoredJan 27, 2020
Merge pull request #15 from dshanske/actions
Support Deploy Through GitHub Actions
2 parents d613fd8 + 3497156 commit 325df3a

File tree

6 files changed

+45
-37
lines changed

6 files changed

+45
-37
lines changed
 

‎.distignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/.wordpress-org
2+
/.git
3+
/.github
4+
/node_modules
5+
/bin
6+
/vendor
7+
/tests
8+
readme.md
9+
package.json
10+
composer.json
11+
composer.lock
12+
Gruntfile.js
13+
push.sh
14+
phpunit.xml
15+
phpcs.xml
16+
README.md
17+
readme.md
18+
.travis.yml
19+
.distignore
20+
.gitignore

‎.gitattributes

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Directories
2+
/.wordpress-org export-ignore
3+
/.github export-ignore
4+
5+
# Files
6+
/.gitattributes export-ignore
7+
/.gitignore export-ignore

‎.github/workflows/deploy.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Deploy to WordPress.org
2+
on:
3+
push:
4+
tags:
5+
- "*"
6+
jobs:
7+
tag:
8+
name: New tag
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@master
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 }}
17+
SLUG: mf2-feed

‎.svnignore

-33
This file was deleted.

‎.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,20 @@ cache:
99
directories:
1010
- vendor
1111
- $HOME/.composer/cache
12-
after_success: curl -L https://raw.githubusercontent.com/miya0001/travis2wpplugin/master/deploy.sh | bash
12+
after_success:
1313
env:
1414
matrix:
1515
- WP_VERSION=latest WP_MULTISITE=0
1616
global:
1717
- WP_TRAVISCI=travis:phpunit
1818
- SVN_REPO: https://plugins.svn.wordpress.org/mf2-feed/
1919
- GH_REF: https://github.com/indieweb/wordpress-mf2-feed.git
20-
- secure: "ppYi84vGXGXTstjdk1JwuwYSnzDI3zpsf3NqVXle8y0A19urkdf5GTMFwGLiCkLynHPZfWWly3x5fB6YIaGxIAu0rNPgbOUufMWremIssAXl7wcy5pNdhgbDKO/veXg5l+M+4WMuhLvH/fZGRiqtF7nC5VY8VmlmMxnvHeJ8mFW9RJavvsmeZivbSH65TvKecrAbYHGY0Yj2B2aMk/RX7gafZL3/7azSkKcjZ3zke2pu0sVFI8IjGJh3e9n2eJ9iWChHTjSQSV/uWmw0VQ5OCgiHENy37NSPIpw+qqwrcGtDscAhdfJj8r7HlCYdHtbJN5COWV7dZ3IIo6mITnuca4bFwnMb82ffL1gyk9D/PPKXVWrRZAqA6zCCf8e7OByUlkuhFmrsAQCHnGQCnOnv+2RQqbgu9/n9bPU7wQcuPlgv1nUpwa4YNBSMA/f2ENeeUBi+WeXWHtpFyNpehjp0RAxVBYpu4sS7vnLMe+T+qXOHoGxFN/xmFooffuk5ik2AGfYRdhrzjaY4+oc1GQ7iikq77Y/1VqExYKnLXw17lk8AxuMQ9Kac7Ef6hiTtgnCLw6qnPHbiMXwh23Dmn4ciByZFawLNVnAD4WFWwLgdRt67/2Te+EOwaIk029UtenhrEcQhIQPgukL5CO7VM7z/vl0ZLoVRwlkkpLfcg0IakZM="
2120
matrix:
2221
include:
2322
- php: 7.2
2423
- php: 7.1
2524
- php: 7.0
2625
- php: 5.6
27-
- php: 5.6
28-
env: WP_PULUGIN_DEPLOY=1
2926
before_script:
3027
- |
3128
# Remove Xdebug for a huge performance increase:

‎.wordpress-org/icon-256x256.png

8.42 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.