From 5105758a3cb93ed96f8af0ff33b88dd33766ffdc Mon Sep 17 00:00:00 2001 From: Arooran Thanabalasingam Date: Tue, 17 Oct 2023 13:30:23 +0200 Subject: [PATCH] ci: fix bash command --- .github/workflows/deploy-wp.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-wp.yml b/.github/workflows/deploy-wp.yml index 012c3ea6..b14d7505 100644 --- a/.github/workflows/deploy-wp.yml +++ b/.github/workflows/deploy-wp.yml @@ -47,10 +47,10 @@ jobs: - name: Sync code changes to tag if: ${{inputs.push-tag}} run: | - rm -rf wp/inseri-core/tags/${ VERSION }/* - mkdir -p wp/inseri-core/tags/${ VERSION } - cp -a zip-content/* wp/inseri-core/tags/${ VERSION } - ls -lA wp/inseri-core/tags/${ VERSION } + rm -rf wp/inseri-core/tags/${VERSION}/* + mkdir -p wp/inseri-core/tags/${VERSION} + cp -a zip-content/* wp/inseri-core/tags/${VERSION} + ls -lA wp/inseri-core/tags/${VERSION} - name: Sync code changes to trunk if: ${{inputs.push-trunk}}