Skip to content

Commit ee9f2bb

Browse files
committed
Fix(Build): use main branch
1 parent d865f6c commit ee9f2bb

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

.github/workflows/deploy-prod.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
with:
17-
ref: develop
17+
ref: main
1818
fetch-depth: 0 #To Fetch All Tags and Branches
1919

2020
- name: Install Dependencies
@@ -61,22 +61,14 @@ jobs:
6161
- name: "Update Full ChangeLog"
6262
run: echo "${{ env.full_change_log }}" > CHANGELOG.md
6363

64-
- name: Update develop branch
64+
- name: Update main branch
6565
uses: EndBug/add-and-commit@v9
6666
with:
6767
default_author: github_actions
6868
add: "['CHANGELOG.md', 'package.json']" #only this files will be added
69-
push: origin HEAD:develop
69+
push: origin HEAD:main
7070
message: "ci(release): release new version ${{ env.tag_name }}"
7171

72-
- name: Merge develop -> master
73-
uses: devmasx/merge-branch@master
74-
with:
75-
type: now
76-
from_branch: develop
77-
target_branch: master
78-
github_token: ${{ secrets.GITHUB_TOKEN }}
79-
8072
##########################################
8173
# Push / Pull translation files #
8274
##########################################

0 commit comments

Comments
 (0)