Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hardik-zealous committed Feb 14, 2025
2 parents d6471a5 + 95f9452 commit eb17b48
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Deploy to WordPress.org

on:
release:
types: [ released ]

jobs:
tag:
name: New release
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v2

- 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 }}
SLUG: woocommerce-embed-videos-to-product-image-gallery

- 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}}/woocommerce-embed-videos-to-product-image-gallery.zip
asset_name: ${{ github.event.repository.name }}.zip
asset_content_type: application/zip

0 comments on commit eb17b48

Please sign in to comment.