1.9.1 #19
Workflow file for this run
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: Deploy to WordPress.org | |
on: | |
release: | |
types: [published] | |
jobs: | |
build-test: | |
name: Run tests. | |
runs-on: ubuntu-latest | |
## todo later - run deploy. | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache Composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/composer-cache | |
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
- uses: php-actions/composer@v6 | |
- uses: php-actions/phpunit@v3 | |
with: | |
version: 7.5.20 | |
php_version: 7.3 | |
bootstrap: tests/bootstrap.php | |
configuration: phpunit.xml | |
tag: | |
name: New release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Cache Composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/composer-cache | |
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
- name: Install composer | |
uses: php-actions/composer@v6 | |
with: | |
php_extensions: json | |
version: 2 | |
dev: no | |
- run: composer global config --no-plugins allow-plugins.wpify/scoper true | |
- run: composer global require wpify/scoper | |
- run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE/vendor | |
- run: composer install --no-dev --optimize-autoloader | |
- 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: woolab-ic-dic | |
- 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}}/woolab-ic-dic.zip | |
asset_name: woolab-ic-dic.zip | |
asset_content_type: application/zip |