From e1da7de3f62783148ced2f299b359028ac14f3e5 Mon Sep 17 00:00:00 2001 From: PriyoMukul Date: Tue, 14 Sep 2021 14:39:54 +0600 Subject: [PATCH] Deploy Test Removed --- .github/workflows/release.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 056267c13..9f08a312a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,8 @@ name: Deploy to WordPress.org on: push: - branches: [ deploy ] + tags: + - "*" jobs: deploy: runs-on: ubuntu-latest @@ -11,4 +12,16 @@ jobs: - uses: actions/checkout@v2 - name: Running NPM Install & Build For Gutenberg run: | - npm install --silent && npm run build \ No newline at end of file + npm install --silent && npm run build + - name: WordPress Plugin Deploy + id: deploy + uses: 10up/action-wordpress-plugin-deploy@stable + env: + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + SVN_USERNAME: ${{ secrets.SVN_USERNAME }} + - name: Assets Update + id: assets + uses: 10up/action-wordpress-plugin-asset-update@stable + env: + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + SVN_USERNAME: ${{ secrets.SVN_USERNAME }} \ No newline at end of file