Publish to WordPress SVN #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to WordPress SVN | |
on: workflow_dispatch | |
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: ./.github/actions/svn-publish | |
with: | |
svn-repository: https://svn.riouxsvn.com/openedx-commerc | |
svn-username: ${{ secrets.SVN_USERNAME }} | |
svn-password: ${{ secrets.SVN_PASSWORD }} | |
assets-directory: ../docs/source/_images/plugin-page | |
working-directory: openedx-commerce |