Support for div structure in checkout iso ul / li #38
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: Update assets on WordPress.org | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| assets-parcelpro: | |
| name: Assets Parcel Pro | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: composer build:parcelpro | |
| - uses: 10up/action-wordpress-plugin-asset-update@stable | |
| env: | |
| SVN_USERNAME: ${{ vars.SVN_USERNAME }} | |
| SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | |
| SLUG: woo-parcel-pro | |
| ASSETS_DIR: .wordpress-parcel-pro | |
| IGNORE_OTHER_FILES: true | |
| assets-shopsunited: | |
| name: Assets Shops United | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: composer build:shopsunited | |
| - uses: 10up/action-wordpress-plugin-asset-update@stable | |
| env: | |
| SVN_USERNAME: ${{ vars.SVN_USERNAME }} | |
| SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | |
| SLUG: integration-shops-united-woocommerce | |
| ASSETS_DIR: .wordpress-shops-united | |
| IGNORE_OTHER_FILES: true |