File tree 5 files changed +48
-37
lines changed
5 files changed +48
-37
lines changed Original file line number Diff line number Diff line change
1
+ /.wordpress-org
2
+ /.git
3
+ /.github
4
+ /node_modules
5
+ /bin
6
+ /sass
7
+ /vendor
8
+ /tests
9
+ readme.md
10
+ package.json
11
+ composer.json
12
+ composer.lock
13
+ Gruntfile.js
14
+ push.sh
15
+ phpunit.xml
16
+ phpunit.xml.dist
17
+ phpcs.xml
18
+ README.md
19
+ readme.md
20
+ .travis.yml
21
+ .distignore
22
+ .gitignore
23
+ docker-compose.yml
Original file line number Diff line number Diff line change
1
+ # Directories
2
+ /.wordpress-org export-ignore
3
+ /.github export-ignore
4
+
5
+ # Files
6
+ /.gitattributes export-ignore
7
+ /.gitignore export-ignore
Original file line number Diff line number Diff line change
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 : indieweb
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9
9
directories :
10
10
- vendor
11
11
- $HOME/.composer/cache
12
- after_success : curl -L https://raw.githubusercontent.com/miya0001/travis2wpplugin/master/deploy.sh | bash
12
+ after_success :
13
13
env :
14
14
matrix :
15
15
- WP_VERSION=latest WP_MULTISITE=0
16
16
global :
17
17
- WP_TRAVISCI=travis:phpunit
18
18
- SVN_REPO : https://plugins.svn.wordpress.org/indieweb/
19
19
- GH_REF : https://github.com/indieweb/wordpress-indieweb.git
20
- - secure : " XQXCVlHyWGYEtJRwwmP3uIRML07en6LfZ0aW88PoHagLFp/HGIrNX4a2Xah09dAjsaKFUdiUawkk00ge0XGHADbB3n3F7XFshELKS6MFNOOngRiBWYD4aDF7mwZbZ1qab28wh4PCK0LndpfYI5ta+ltg/x9JFpwnELR1nfRFj/s="
21
20
matrix :
22
21
include :
23
22
- php : 7.3
24
23
- php : 7.2
25
24
- php : 7.1
26
25
- php : 7.0
27
26
- php : 5.6
28
- - php : 5.6
29
- env : WP_PULUGIN_DEPLOY=1
30
27
before_script :
31
28
- |
32
29
# Remove Xdebug for a huge performance increase:
You can’t perform that action at this time.
0 commit comments