Release of 6.5.1 (#566) #59
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
on: | |
push: | |
tags: | |
- '*' # Create for all tags a draft release | |
name: Publish in Wordpress | |
jobs: | |
tag: | |
name: Publish in Wordpress | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.3' | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} | |
- name: Checkout project | |
uses: actions/checkout@v2 | |
- name: Build project | |
run: ./bin/release-into-wordpress.sh ${{ steps.get_version.outputs.VERSION }} | |
- name: Composer dependencies | |
run: composer install --no-dev | |
- name: WordPress Plugin Deploy | |
uses: nk-o/action-wordpress-plugin-deploy@master | |
env: | |
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | |
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | |
SOURCE_DIR: .release/multisafepay/ | |
SLUG: multisafepay |