chore: namings

This commit is contained in:
Simone Corsi 2021-01-16 09:58:45 +01:00
parent f3d2757101
commit b16fdb0915
2 changed files with 2 additions and 4 deletions

View File

@ -20,9 +20,7 @@ jobs:
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: build
run: |
npm ci && npm run build
git add . && git commit -am 'build(index.js): build'
run: npm ci && npm run build
- name: Bump version and push tag
id: changelog

View File

@ -118,7 +118,7 @@ export async function main(): Promise<any> {
await git.add(OUTPUT_FILENAME);
await git.commit(`chore(${OUTPUT_FILENAME}): updated list`);
await git.commit(`chore(${OUTPUT_FILENAME}): updated ${OUTPUT_FILENAME}`);
await git.push();
}