Skip to content

Commit

Permalink
Testing - auto deploy to freemius GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
sanzeeb3 committed Nov 8, 2024
1 parent 8c982df commit 73ff018
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/update-freemius-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,15 @@ jobs:
TAG=$(git describe --tags --abbrev=0)
echo "tag=$TAG" >> $GITHUB_ENV # Store in environment variable
# Create zip file with the repository name
- name: Create zipfile of the repository
run: |
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
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

0 comments on commit 73ff018

Please sign in to comment.