Skip to content

Commit

Permalink
Testing fake release 5.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sanzeeb3 committed Nov 8, 2024
1 parent 4b6cb11 commit 8d1d27b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/update-freemius-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:
steps:
- name: Check out the code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history so we can access tags

- name: Get Latest Tag
id: get_tag
Expand All @@ -23,15 +21,15 @@ jobs:
TAG=$(git describe --tags --abbrev=0)
echo "tag=$TAG" >> $GITHUB_ENV # Store in environment variable
# Create zip file from the latest tag
- name: Create zipfile from tag
# Create zip file with the repository name
- name: Create zipfile of the repository
run: |
git archive -o "${{ github.event.repository.name }}.zip" ${{ env.tag }}
zip -qq -r "${{ github.event.repository.name }}.zip" ./*
- name: Deploy to Freemius
uses: buttonizer/freemius-deploy@c104cc8c63c850b01f20fa642046ea76b3f7e53b # Using the PR @see https://github.com/buttonizer/freemius-deploy/pull/2
with:
file_name: "${{ github.event.repository.name }}.zip" # Use the tag-based zip file
file_name: "${{ github.event.repository.name }}.zip" # Use the dynamically named zip file
release_mode: pending
version: ${{ env.tag }} # Use the retrieved tag as the version
sandbox: false
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: delete-account, delete-account-from-frontend, frontend-delete, remove-acco
Requires at least: 4.9
Tested up to: 6.5
Requires PHP: 5.6
Stable tag: 4.3.0
Stable tag: 5.3.0
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down
4 changes: 2 additions & 2 deletions wp-frontend-delete-account.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: WP Frontend Delete Account
* Description: Lets customers delete their account by their own.
* Version: 4.3.0
* Version: 5.3.0
* Author: Mini Plugins
* Author URI: https://miniplugins.com
* Text Domain: wp-frontend-delete-account
Expand Down Expand Up @@ -74,7 +74,7 @@ function wfda_fs() {
*
* @var string
*/
const WPFDA_VERSION = '4.3.0';
const WPFDA_VERSION = '5.3.0';

require_once __DIR__ . '/vendor/autoload.php';

Expand Down

0 comments on commit 8d1d27b

Please sign in to comment.