From c982c5815d6d69562e6b65c0e6a941fb5f0f4cb1 Mon Sep 17 00:00:00 2001 From: agonzalez97 Date: Thu, 30 Mar 2023 11:28:02 +0200 Subject: [PATCH] Removed credentials on publish release --- .github/workflows/publish-release.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index d4c7be781..abb7345fd 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -24,16 +24,6 @@ jobs: node-version: 14.x registry-url: https://registry.npmjs.org/ - - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v1 - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: us-west-2 - role-to-assume: ${{ secrets.AWS_ROLE_SANDBOX }} - role-duration-seconds: 6000 - role-skip-session-tagging: true - - name: Install app dependencies run: cd . && npm install @@ -49,9 +39,6 @@ jobs: - name: Test library run: cd ./projects/dxc-ngx-cdk && npm run test - - name: Build angular release cdk site - run: cd . && npm run build-release-cdk-site -- --baseHref=/tools/angular/${{steps.split.outputs._0}}/ - - name: Publish RELEASE to npm run: | sed -i "s#\"version\": \"0.0.0\"#\"version\": \"${TAG_NAME}\"#" ./dist/dxc-ngx-cdk/package.json @@ -60,8 +47,3 @@ jobs: env: NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} TAG_NAME: ${{ github.event.release.tag_name }} - - - name: Move RELEASE docs to S3 - run: node scripts/release-docs.js $TAG_NAME - env: - TAG_NAME: ${{ github.event.release.tag_name }}