Skip to content

Commit

Permalink
pwd
Browse files Browse the repository at this point in the history
  • Loading branch information
chaudharysaket committed May 16, 2024
1 parent 34a2d14 commit 315980d
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/publish-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,20 @@ jobs:
- name: Run Node ${{ matrix.node-version }} unit tests
if: steps.node-check-tag.outputs.match == 'true'
run: cd nodejs && npm ci && npm run test
- name: Publish layer
if: steps.node-check-tag.outputs.match == 'true'
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: make publish-nodejs${{ matrix.node-version }}x-ci
- name: Publish ecr image for ${{ matrix.node-version }} layer
# - name: Publish layer
# if: steps.node-check-tag.outputs.match == 'true'
# env:
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# run: make publish-nodejs${{ matrix.node-version }}x-ci
- name: Publish ECR image for nodejs${{ matrix.node-version }}
if: steps.node-check-tag.outputs.match == 'true'
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: |
pwd
ls
./publish-ecr-images.sh build-publish-nodejs${{ matrix.node-version }}x-ecr-image
- name: Upload Unit Test Coverage
if: steps.node-check-tag.outputs.match == 'true'
Expand Down

0 comments on commit 315980d

Please sign in to comment.