Files
npm-audit-action/.github/workflows/dist.yml
dependabot[bot] f5fab4045b build(deps): bump stefanzweifel/git-auto-commit-action from 4 to 5
Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 4 to 5.
- [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases)
- [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4...v5)

---
updated-dependencies:
- dependency-name: stefanzweifel/git-auto-commit-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-09 09:35:35 +00:00

28 lines
604 B
YAML

name: "update dist/index.js"
on:
push:
branches:
- main
jobs:
pack:
runs-on: ubuntu-latest
steps:
- name: check out repository code
uses: actions/checkout@v4
- name: install dependencies
run: |
npm ci
- name: format TypeScript code
run: |
npm run format
- name: compile TypeScript code
run: |
npm run build
- name: compile TypeScript code into dist/index.js
run: |
npm run pack
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore(build): automated change"