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 b56dd9d commit 831342dCopy full SHA for 831342d
.github/scripts/setup-git-user.js
@@ -0,0 +1,7 @@
1
+import { $ } from "execa";
2
+
3
+const email = "41898282+github-actions[bot]@users.noreply.github.com";
4
+const name = "GitHub Actions";
5
6
+await $`git config --global user.email ${email}`;
7
+await $`git config --global user.name ${name}`;
.github/workflows/release.yml
@@ -45,6 +45,9 @@ jobs:
45
- name: Install
46
run: pnpm install --frozen-lockfile
47
48
+ - name: Setup Git User
49
+ run: node .github/scripts/setup-git-user.js
50
51
- name: Build packages
52
run: pnpm nx run-many -t build --projects=@knuckles/*
53
0 commit comments