Skip to content

Commit 6615017

Browse files
authored
Merge pull request #6 from Jakub007d/fix/css
fix: fixing user for release
2 parents f85e2e3 + cc8d053 commit 6615017

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@ jobs:
6464
fi
6565
continue-on-error: false
6666

67+
# Configure git for release commits
68+
- name: Configure git user
69+
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
70+
run: |
71+
git config --global user.name "github-actions[bot]"
72+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
73+
6774
# Actual release on push (works for forks too)
6875
- name: Run Nx release (Push)
6976
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')

.nx/workspace-data/project-graph.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68514,5 +68514,5 @@
6851468514
"name": "MultipleProjectsWithSameNameError"
6851568515
}
6851668516
],
68517-
"computedAt": 1761656937131
68517+
"computedAt": 1761657640576
6851868518
}

0 commit comments

Comments
 (0)