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 841b86d commit 4c72225Copy full SHA for 4c72225
.github/workflows/build.yml
@@ -20,10 +20,6 @@ jobs:
20
uses: actions/setup-node@v4
21
with:
22
node-version: 'node'
23
-
24
- - name: Change Branch
25
- run: |
26
- git checkout -B production
27
28
- name: Cleanup
29
run: |
@@ -38,12 +34,15 @@ jobs:
38
34
npm install
39
35
npm run build
40
36
37
+
41
- name: Prepare Deploy Branch
42
43
git config user.name "github-actions[bot]"
44
- git config user.email "github-actions[bot]@users.noreply.com"
+ git config user.email "github-actions[bot]@users.noreply.github.com"
45
46
- git add .
+ git checkout -B production
+ git add src
47
48
if git diff --cached --quiet; then
49
echo "No changes to deploy."
0 commit comments