diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 583a03be..e9812e4f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -305,9 +305,7 @@ jobs: path: dist - name: Install dependencies run: npm ci - - run: |- - tar --strip-components=1 -xzvf dist/js/*.tgz -C . - npx projen integ:go + - run: npx projen integ:go test-latest-versions: needs: build runs-on: ubuntu-latest diff --git a/projenrc/IntegrationTests.ts b/projenrc/IntegrationTests.ts index 1bd3fb7d..f007ecb7 100644 --- a/projenrc/IntegrationTests.ts +++ b/projenrc/IntegrationTests.ts @@ -185,7 +185,6 @@ export class IntegrationTests extends Component { const goJobName = 'integ-go'; this.project.buildWorkflow?.addPostBuildJobCommands(goJobName, [ - 'tar --strip-components=1 -xzvf dist/js/*.tgz -C .', 'npx projen integ:go', ], { checkoutRepo: true,