Skip to content

Commit

Permalink
Merge pull request #135 from WebDevStudios/sprint/21.06
Browse files Browse the repository at this point in the history
Sprint/21.06
  • Loading branch information
richaber authored Jan 25, 2022
2 parents ddf689a + e75aa5a commit 241d1aa
Show file tree
Hide file tree
Showing 14 changed files with 8,171 additions and 3,032 deletions.
11 changes: 11 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.distignore
.gitignore
/.git
/.github
/node_modules
/tests
/webpack
cypress.example.json
phpcs.xml.dist
phpunit.xml
README.md
42 changes: 42 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Deploy to WordPress.org
on:
release:
types: [published]

workflow_dispatch:

jobs:
tag:
name: New release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
uses: php-actions/composer@v5
with:
php_version: 7
version: 1
command: install
args: --no-dev
- name: Build
run: |
npm install
npm run build
- name: WordPress Plugin Deploy
id: deploy
uses: 10up/action-wordpress-plugin-deploy@stable
with:
generate-zip: true
env:
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{github.workspace}}/${{ github.event.repository.name }}.zip
asset_name: ${{ github.event.repository.name }}.zip
asset_content_type: application/zip
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/fermium
Binary file added .wordpress-org/banner-1544x500.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .wordpress-org/banner-772x250.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .wordpress-org/icon-128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .wordpress-org/icon-256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: constantcontact, webdevstudios, znowebdev, jmichaelward, ggwicz, ravedev
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
Requires at least: 5.2.2
Tested up to: 5.5.1
Tested up to: 5.9
Stable tag: 1.3.3
Requires PHP: 7.2
License: GPLv3
Expand Down
Loading

0 comments on commit 241d1aa

Please sign in to comment.