diff --git a/.github/actions/upload-node-modules-and-artifacts/action.yml b/.github/actions/upload-node-modules-and-artifacts/action.yml deleted file mode 100644 index f482168d41..0000000000 --- a/.github/actions/upload-node-modules-and-artifacts/action.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: "Upload build artifacts" -description: "Upload build artifacts" - -runs: - using: "composite" - steps: - - name: tar and upload artifacts - shell: bash - env: - REMOTE_PATH: "alfresco-ng2-components/build-cache/${{ github.run_id }}" - run: | - packages=( dist nxcache node_modules ) - for i in "${packages[@]}"; do - time tar czf $i.tar.gz $i - du -h $i.tar.gz - time aws s3 cp --no-progress $i.tar.gz "s3://${S3_BUILD_BUCKET_SHORT_NAME}/${REMOTE_PATH}/$i.tar.gz" - done - - diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 17f1ec34d6..6e10d38807 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -182,7 +182,6 @@ jobs: npm ci npx nx run js-api:bundle npx nx run cli:bundle - - uses: ./.github/actions/upload-node-modules-and-artifacts lint: name: "Lint"