We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee589f commit 40662d6Copy full SHA for 40662d6
.github/workflows/release.yaml
@@ -19,5 +19,7 @@ jobs:
19
- name: Tag major version
20
if: ${{ steps.release.outputs.release_created }}
21
run: |
22
+ git config user.name "github-actions[bot]"
23
+ git config user.email "github-actions[bot]@users.noreply.github.com"
24
git tag -a v${{ steps.release.outputs.new_version }} -m "Release v${{ steps.release.outputs.new_version }}"
25
git push origin v${{ steps.release.outputs.new_version }}
.gitignore
@@ -1,4 +1,4 @@
1
-.idea/
2
-.vscode/
+.idea
+.vscode
3
4
-node_modules/
+node_modules
tsconfig.json
@@ -35,6 +35,5 @@
35
],
36
"exclude": [
37
"src/**/*.test.ts",
38
- "node_modules/**"
39
]
40
}
0 commit comments