3.12.2 #150
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: [ released ] | |
jobs: | |
tests: | |
uses: ./.github/workflows/wordpress.yml | |
release: | |
name: New release | |
runs-on: ubuntu-20.04 | |
environment: live | |
needs: tests | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.4 | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: none | |
- name: Install composer dependencies | |
uses: php-actions/composer@v5 | |
with: | |
php_version: 7.4 | |
dev: no | |
- name: Copy tcpdf fonts to vendor | |
run: sudo COMPOSER_ALLOW_SUPERUSER=1 composer run copy-fonts | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '12' | |
- name: Install npm dependencies & build for translation | |
run: | | |
npm install -g npm@7 | |
npm ci | |
npm run dev | |
# In order to run this WordPress also needs to be installed | |
- name: Generate pot file | |
run: | | |
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
chmod +x wp-cli.phar | |
mv wp-cli.phar /usr/local/bin/wp | |
php -d xdebug.mode=off "$(which wp)" i18n make-pot ${{github.workspace}} ${{github.workspace}}/languages/give.pot --exclude="$(cat .distignore | tr "\n" "," | sed 's/,$/ /' | tr " " "\n"),src/**/*.js,*.js.map,blocks/**/*.js" | |
- name: Build assets for production | |
run: npm run build | |
- 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: give | |
- 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}}/give.zip | |
asset_name: give.zip | |
asset_content_type: application/zip | |
- name: Slack Notification | |
uses: someimportantcompany/github-actions-slack-message@v1 | |
with: | |
webhook-url: ${{ secrets.SLACK_ANNOUNCEMENT_WEBHOOK }} | |
text: "*${{ github.event.repository.name }} ${{ github.event.release.name }} has just been released! 🎉* \n\n Here's what's new: \n\n ${{ github.event.release.body }} \n\n <${{ github.event.release.html_url }}|Link to Release>" |