From 12d7659b31177e4dea4d907b0f6150379f44fc9a Mon Sep 17 00:00:00 2001 From: Gertrude Abagale <110245619+gertrude-paystack@users.noreply.github.com> Date: Wed, 27 Sep 2023 12:27:25 +0000 Subject: [PATCH 1/2] Create workflow An action to deploy patches to WP --- .github/workflow | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflow diff --git a/.github/workflow b/.github/workflow new file mode 100644 index 0000000..7a64aeb --- /dev/null +++ b/.github/workflow @@ -0,0 +1,29 @@ +name: Deploy to WordPress.org +on: + release: + types: [published] +jobs: + tag: + name: New release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - 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: paystack-memberpress + - name: Upload release asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} + with: + upload_url: ${{ github.event.release.upload_url }} + asset_path: ${{ steps.deploy.outputs.zip-path }} + asset_name: ${{ github.event.repository.name }}.zip + asset_content_type: application/zip From a935424f5ee69e6f7e77879bb0172981363277e0 Mon Sep 17 00:00:00 2001 From: Gertrude Abagale Date: Tue, 3 Oct 2023 12:59:09 +0000 Subject: [PATCH 2/2] git action to auto deploy to WP --- .github/workflows/deploy.yml | 42 +++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index eec7898..94e7877 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,21 +1,29 @@ -name: Deploy WordPress plugin +name: Deploy to WordPress.org on: - push: - branches: [ master, 'release/v[0-9].[0-9].[0-9]' ] - + release: + types: [published] jobs: - build: - name: Deploy WordPress plugin - # 2. Specify Linux runner - runs-on: ubuntu-20.04 + tag: + name: New release + runs-on: ubuntu-latest steps: - # 3. Checkout before Use this deployment action - - name: Checkout - uses: actions/checkout@v3 - # 4. Use action with environment variable set by secrets - - name: Deploy - uses: yukihiko-shinoda/action-deploy-wordpress-plugin@v2.1.1 + - name: Checkout code + uses: actions/checkout@v2 + - name: WordPress Plugin Deploy + id: deploy + uses: 10up/action-wordpress-plugin-deploy@stable + with: + generate-zip: true env: - SVN_REPOSITORY_URL: ${{ secrets.SVN_REPO_URL }} - SVN_USER_NAME: ${{ secrets.SVN_USERNAME }} - SVN_USER_PASSWORD: ${{ secrets.SVN_PASSWORD }} + SVN_USERNAME: ${{ secrets.SVN_USERNAME }} + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + SLUG: paystack-memberpress + - name: Upload release asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} + with: + upload_url: ${{ github.event.release.upload_url }} + asset_path: ${{ steps.deploy.outputs.zip-path }} + asset_name: ${{ github.event.repository.name }}.zip + asset_content_type: application/zip \ No newline at end of file