From 8216a912f636818098d5c6b350603cbbef763f8b Mon Sep 17 00:00:00 2001 From: Adam Shaw Date: Mon, 13 Nov 2023 18:09:23 -0800 Subject: [PATCH] Changing Working directory --- .github/workflows/IntegrationTesting.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/IntegrationTesting.yml b/.github/workflows/IntegrationTesting.yml index 1b6db3ec..ab348b61 100644 --- a/.github/workflows/IntegrationTesting.yml +++ b/.github/workflows/IntegrationTesting.yml @@ -17,9 +17,6 @@ jobs: - name: Create a directory run: mkdir sample-apps/http-server/aws-xray-sdk-go - - name: Copy X-Ray SDK to deployment package with Sample App - run: rsync -r * sample-apps/http-server/aws-xray-sdk-go --exclude sample-apps/ - - name: Zip up the deployment package run: zip -r deploy.zip . -x '*.git*' @@ -27,7 +24,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: deployment-package - path: sample-apps/http-server/deploy.zip + path: deploy.zip deploy_WebApp: name: Deploy X-Ray Instrumented Web App