We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac07fab commit 5ea330bCopy full SHA for 5ea330b
1 file changed
.github/workflows/ci.yml
@@ -105,6 +105,8 @@ jobs:
105
106
steps:
107
- uses: actions/checkout@v4
108
+ with:
109
+ fetch-depth: 0
110
111
- name: Install Python
112
uses: actions/setup-python@v5
@@ -117,6 +119,9 @@ jobs:
117
119
- name: Run semantic-release
118
120
env:
121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run:
122
+ run: |
123
+ git config --global user.email "bugmon@mozilla.com"
124
+ git config --global user.name "semantic-release"
125
poetry run semantic-release -v version --no-changelog
126
poetry run semantic-release publish
127
+
0 commit comments