Skip to content

Commit 40662d6

Browse files
committed
ci: fix release please
1 parent 2ee589f commit 40662d6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,7 @@ jobs:
1919
- name: Tag major version
2020
if: ${{ steps.release.outputs.release_created }}
2121
run: |
22+
git config user.name "github-actions[bot]"
23+
git config user.email "github-actions[bot]@users.noreply.github.com"
2224
git tag -a v${{ steps.release.outputs.new_version }} -m "Release v${{ steps.release.outputs.new_version }}"
2325
git push origin v${{ steps.release.outputs.new_version }}

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.idea/
2-
.vscode/
1+
.idea
2+
.vscode
33

4-
node_modules/
4+
node_modules

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,5 @@
3535
],
3636
"exclude": [
3737
"src/**/*.test.ts",
38-
"node_modules/**"
3938
]
4039
}

0 commit comments

Comments
 (0)