Skip to content

Commit 241d1aa

Browse files
authored
Merge pull request #135 from WebDevStudios/sprint/21.06
Sprint/21.06
2 parents ddf689a + e75aa5a commit 241d1aa

File tree

14 files changed

+8171
-3032
lines changed

14 files changed

+8171
-3032
lines changed

.distignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.distignore
2+
.gitignore
3+
/.git
4+
/.github
5+
/node_modules
6+
/tests
7+
/webpack
8+
cypress.example.json
9+
phpcs.xml.dist
10+
phpunit.xml
11+
README.md

.github/workflows/deploy.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Deploy to WordPress.org
2+
on:
3+
release:
4+
types: [published]
5+
6+
workflow_dispatch:
7+
8+
jobs:
9+
tag:
10+
name: New release
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v2
15+
- name: Install dependencies
16+
uses: php-actions/composer@v5
17+
with:
18+
php_version: 7
19+
version: 1
20+
command: install
21+
args: --no-dev
22+
- name: Build
23+
run: |
24+
npm install
25+
npm run build
26+
- name: WordPress Plugin Deploy
27+
id: deploy
28+
uses: 10up/action-wordpress-plugin-deploy@stable
29+
with:
30+
generate-zip: true
31+
env:
32+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
33+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
34+
- name: Upload release asset
35+
uses: actions/upload-release-asset@v1
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
with:
39+
upload_url: ${{ github.event.release.upload_url }}
40+
asset_path: ${{github.workspace}}/${{ github.event.repository.name }}.zip
41+
asset_name: ${{ github.event.repository.name }}.zip
42+
asset_content_type: application/zip

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lts/fermium

.wordpress-org/banner-1544x500.png

390 KB
Loading

.wordpress-org/banner-772x250.png

127 KB
Loading

.wordpress-org/icon-128x128.png

17.8 KB
Loading

.wordpress-org/icon-256x256.png

61.5 KB
Loading

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contributors: constantcontact, webdevstudios, znowebdev, jmichaelward, ggwicz, ravedev
33
Tags: capture, contacts, constant contact, constant contact form, constant contact newsletter, constant contact official, contact forms, email, form, forms, marketing, mobile, newsletter, opt-in, plugin, signup, subscribe, subscription, widget
44
Requires at least: 5.2.2
5-
Tested up to: 5.5.1
5+
Tested up to: 5.9
66
Stable tag: 1.3.3
77
Requires PHP: 7.2
88
License: GPLv3

0 commit comments

Comments
 (0)