We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22bb3d3 commit 3072067Copy full SHA for 3072067
2 files changed
.env.ci
@@ -4,7 +4,7 @@ POSTGRES_USER="postgres"
4
POSTGRES_PASSWORD="password"
5
POSTGRES_DB="api"
6
POSTGRES_HOST="localhost"
7
-POSTGRES_PORT="5432"
+POSTGRES_PORT=5432
8
9
JWT_SECRET=SECRET
10
CSRF_SECRET=SECRET
.github/workflows/release.yml
@@ -26,6 +26,11 @@ jobs:
26
poetry install
27
pip install bump2version
28
29
+ - name: Set up Git user
30
+ run: |
31
+ git config --local user.name "GitHub Action"
32
+ git config --local user.email "action@github.com"
33
+
34
# Step 4: Bump the version (patch, minor, or major)
35
- name: Bump Version
36
run: |
0 commit comments