Skip to content

Commit

Permalink
feat: add publish to wordpress svn action
Browse files Browse the repository at this point in the history
  • Loading branch information
MaferMazu committed Nov 18, 2024
1 parent 23ad005 commit a942981
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/publish-svn.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish to WordPress SVN

on:
workflow_dispatch:
inputs:
message:
description: 'Commit message'
default: 'Release x'
type: string

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Composer dependencies
uses: ramsey/composer-install@v3
with:
composer-options: "--no-dev"

- name: Prepare the openedx-commerce directory for the release
run: |
make release
- name: WordPress Plugin Deploy
id: deploy
uses: richard-muvirimi/deploy-wordpress-plugin@development
with:
plugin-repository: https://plugins.svn.wordpress.org/openedx-commerce/
svn-username: ${{ secrets.WORDPRESS_SVN_USERNAME }}
svn-password: ${{ secrets.WORDPRESS_SVN_PASSWORD }}
commit-message: ${{ inputs.message }}
assets-directory: ../docs/source/_images/plugin-page
working-directory: openedx-commerce

0 comments on commit a942981

Please sign in to comment.