Added deprecated info - 2.0.37 #67
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 | |
on: | |
push: | |
branches: | |
- 2.0.0 | |
jobs: | |
build: | |
name: Deploy plugin | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
# PHPUnit errors with latest PHP 8.X build. | |
# This specifically sets PHP version to 7.4. | |
- name: Setup PHP with tools | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
tools: composer:v1 | |
- name: Install root node_modules | |
run: yarn bootstrap | |
- name: Composer install package | |
working-directory: ./packages/nft-maker | |
run: COMPOSER_MEMORY_LIMIT=-1 composer --ignore-platform-reqs install | |
- name: Build package | |
working-directory: ./packages/nft-maker | |
run: yarn build | |
- name: Build plugin | |
working-directory: ./plugins/tatum | |
run: yarn build | |
- name: Create directory for assets | |
working-directory: ./plugins/tatum/build/tatum | |
run: mkdir .wordpress-org | |
- name: Copy assets | |
run: cp ./plugins/tatum/wordpress.org/assets/* ./plugins/tatum/build/tatum/.wordpress-org/ | |
- name: Create deployment directory | |
working-directory: ./plugins/tatum/build/tatum | |
run: mkdir -p .github/workflows | |
- name: Copy deployment | |
run: cp ./plugins/tatum/wordpress.org/main.yml ./plugins/tatum/build/tatum/.github/workflows | |
- name: Pushes to another repository | |
uses: cpina/github-action-push-to-another-repository@main | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | |
with: | |
source-directory: './plugins/tatum/build/tatum' | |
destination-github-username: 'tatumio' | |
destination-repository-name: 'wordpress-plugin' | |
user-email: [email protected] | |
target-branch: deploy |