diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3ea8974..53bd45d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 diff --git a/src/index.ts b/src/index.ts index f0c211a..bcf9bcc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -118,7 +118,7 @@ export async function main(): Promise { 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(); }