add assets #7
Workflow file for this run
This file contains hidden or 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: Deploy to WordPress.org | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| jobs: | |
| deploy: | |
| name: Deploy Plugin | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout your repo | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| # Deploy to WordPress.org via SVN | |
| - name: WordPress Plugin Deploy | |
| uses: 10up/action-wordpress-plugin-deploy@2.3.0 | |
| with: | |
| slug: betterblocks | |
| build-dir: ./ | |
| assets-dir: ./assets | |
| env: | |
| SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | |
| SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} |