Skip to content

Commit

Permalink
Added Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
techies23 committed Aug 12, 2024
1 parent 64aece1 commit d41e693
Show file tree
Hide file tree
Showing 19 changed files with 76 additions and 10 deletions.
18 changes: 18 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/.wordpress-org
/.git
/.github
/src
/node_modules
/docs
package.json
package-lock.json
composer.json
composer.lock
.DS_Store
webpack.config.js
gulpfile.js
README.md

.distignore
.gitignore
.env
44 changes: 44 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Deploy to WordPress.org
on:
push:
tags:
- "*"

jobs:
tag:
name: New tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master

- name: Setup PHP environment
uses: shivammathur/[email protected]
with:
php-version: '7.4' # Adjust depending on your PHP version

- name: Validate composer.json and composer.lock
run: composer validate

- name: Install Composer dependencies and dump autoload
run: |
composer install --prefer-dist --no-progress --no-suggest
composer dump-autoload -o
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '20' # Adjust depending on your Node.js version

- name: Install NPM dependencies and Build assets
run: |
npm install
npm run build
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@stable
env:
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SLUG: video-conferencing-with-zoom-api
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/screenshot-1.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/screenshot-2.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/screenshot-3.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/screenshot-4.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/screenshot-5.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/screenshot-6.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/screenshot-7.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/screenshot-8.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/screenshot-9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: j__3rk, digamberpradhan
Tags: zoom video conference, video conference, web conferencing, online meetings, webinars
Donate link: https://www.paypal.com/donate?hosted_button_id=2UCQKR868M9WE
Requires at least: 5.0
Tested up to: 6.5
Stable tag: 4.5.1
Tested up to: 6.6
Stable tag: 4.5.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -159,6 +159,10 @@ Yes, you should be registered in Zoom. Also, depending on the zoom account plan

== Changelog ==

= 4.5.2 August 12th, 2024 =
* Fix: Auto recording was not being set for webinars
* Updated: Zoom WebSDK to version 2.18.3

= 4.5.1 July 1st, 2024 =
* Fixed: Undefined error $type issue.

Expand Down
2 changes: 1 addition & 1 deletion assets/vendor/zoom/websdk/websdk.bundle.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@wordpress/element": "^5.7.0",
"@wordpress/i18n": "^4.30.0",
"@wordpress/server-side-render": "^4.7.0",
"@zoomus/websdk": "^2.18.2",
"@zoomus/websdk": "^2.18.3",
"datatables.net": "^1.11.3",
"datatables.net-dt": "^1.11.3",
"datatables.net-responsive": "^2.2.5",
Expand Down
4 changes: 2 additions & 2 deletions video-conferencing-with-zoom-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Plugin Name: Video Conferencing with Zoom
* Plugin URI: https://wordpress.org/plugins/video-conferencing-with-zoom-api/
* Description: Video Conferencing with Zoom Meetings and Webinars plugin provides you with great functionality of managing Zoom meetings, Webinar scheduling options, and users directly from your WordPress dashboard.
* Version: 4.5.1
* Version: 4.5.2
* Author: Deepen Bajracharya
* Author URI: https://www.imdpen.com
* License: GPL-2.0+
Expand All @@ -24,7 +24,7 @@

defined( 'ZVC_PLUGIN_FILE' ) || define( 'ZVC_PLUGIN_FILE', __FILE__ );
defined( 'ZVC_PLUGIN_SLUG' ) || define( 'ZVC_PLUGIN_SLUG', 'video-conferencing-zoom' );
defined( 'ZVC_PLUGIN_VERSION' ) || define( 'ZVC_PLUGIN_VERSION', '4.5.1' );
defined( 'ZVC_PLUGIN_VERSION' ) || define( 'ZVC_PLUGIN_VERSION', '4.5.2' );
defined( 'ZVC_ZOOM_WEBSDK_VERSION' ) || define( 'ZVC_ZOOM_WEBSDK_VERSION', '2.18.2' );
defined( 'ZVC_PLUGIN_DIR_PATH' ) || define( 'ZVC_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) );
defined( 'ZVC_PLUGIN_DIR_URL' ) || define( 'ZVC_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ ) );
Expand Down

0 comments on commit d41e693

Please sign in to comment.