chore(deps): bump @aws-sdk/client-ecr from 3.635.0 to 3.637.0 (#670) #496
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
name: Package | |
jobs: | |
check: | |
name: Package distribution file | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
- name: Package | |
run: | | |
npm ci | |
npm test | |
npm run package | |
- name: Commit | |
run: | | |
git config --global user.name "GitHub Actions" | |
git add dist/ | |
git commit -m "chore: Update dist" || echo "No changes to commit" | |
git push origin HEAD:main |