From a4d678a78c6f044cee9dbeb8762e74c22c29fb54 Mon Sep 17 00:00:00 2001 From: Hardeep Asrani Date: Fri, 3 Mar 2023 10:54:19 +0530 Subject: [PATCH 1/4] Fix archive not inheriting Closes https://github.com/Codeinwp/raft/issues/23 --- templates/archive.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/archive.html b/templates/archive.html index 8768f14..b456280 100644 --- a/templates/archive.html +++ b/templates/archive.html @@ -16,7 +16,7 @@
- +
From f1b7c5ec864066ea558636f7a312fff42361922a Mon Sep 17 00:00:00 2001 From: Hardeep Asrani Date: Fri, 3 Mar 2023 10:56:15 +0530 Subject: [PATCH 2/4] Add deployment action --- .github/workflows/deploy-s3-store.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy-s3-store.yml b/.github/workflows/deploy-s3-store.yml index f50fbfb..88c6d4a 100644 --- a/.github/workflows/deploy-s3-store.yml +++ b/.github/workflows/deploy-s3-store.yml @@ -30,6 +30,11 @@ jobs: composer install --no-dev --prefer-dist --no-progress --no-suggest yarn run build yarn run dist + - name: WordPress Theme Deploy + uses: Codeinwp/action-wordpress-theme-deploy@v1.0 + env: + SVN_PASSWORD: ${{ secrets.SVN_THEMEISLE_PASSWORD }} + SVN_USERNAME: ${{ secrets.SVN_THEMEISLE_USERNAME }} - name: Upload Latest Version to S3 uses: jakejarvis/s3-sync-action@master with: From 69aa954829e358a163984120228a2c566eb88aba Mon Sep 17 00:00:00 2001 From: Hardeep Asrani Date: Fri, 3 Mar 2023 11:16:05 +0530 Subject: [PATCH 3/4] fix: build workflow not working --- .github/workflows/create-build-zip.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-build-zip.yml b/.github/workflows/create-build-zip.yml index 5f4cdbe..eb56c0f 100644 --- a/.github/workflows/create-build-zip.yml +++ b/.github/workflows/create-build-zip.yml @@ -15,7 +15,11 @@ jobs: git-sha-8: ${{ steps.retrieve-git-sha-8.outputs.sha8 }} steps: - name: Check out source files - uses: actions/checkout@v2 + - uses: actions/checkout@master + - name: Setup node 14 + uses: actions/setup-node@v1 + with: + node-version: 14.x - name: Get Composer Cache Directory id: composer-cache run: | From df9d44763a973c2f44e653db8387157f00313d22 Mon Sep 17 00:00:00 2001 From: Hardeep Asrani Date: Fri, 3 Mar 2023 11:20:01 +0530 Subject: [PATCH 4/4] fix: build workflow not working --- .github/workflows/create-build-zip.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/create-build-zip.yml b/.github/workflows/create-build-zip.yml index eb56c0f..b858ac5 100644 --- a/.github/workflows/create-build-zip.yml +++ b/.github/workflows/create-build-zip.yml @@ -14,7 +14,6 @@ jobs: branch-name: ${{ steps.retrieve-branch-name.outputs.branch_name }} git-sha-8: ${{ steps.retrieve-git-sha-8.outputs.sha8 }} steps: - - name: Check out source files - uses: actions/checkout@master - name: Setup node 14 uses: actions/setup-node@v1