-
-
Notifications
You must be signed in to change notification settings - Fork 35
102 lines (91 loc) · 2.88 KB
/
pushMain.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
---
#---------------------------------------------------------
# - Create a semantical release
# - Merge main into next, alpha, beta, and next-major
#---------------------------------------------------------
name: Push to main
on:
workflow_dispatch:
push:
branches:
- main
jobs:
merge-main-to-dev-branches:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v4
- name: Merge main into next
uses: ./.github/actions/merge-branch
with:
github-token: ${{ env.GITHUB_TOKEN }}
source-branch: main
target-branch: next
- name: Merge main into next-major
uses: ./.github/actions/merge-branch
with:
github-token: ${{ env.GITHUB_TOKEN }}
source-branch: main
target-branch: next-major
- name: Merge main into alpha
uses: ./.github/actions/merge-branch
with:
github-token: ${{ env.GITHUB_TOKEN }}
source-branch: main
target-branch: alpha
- name: Merge main into beta
uses: ./.github/actions/merge-branch
with:
github-token: ${{ env.GITHUB_TOKEN }}
source-branch: main
target-branch: beta
semantic-release:
needs: merge-main-to-dev-branches
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
steps:
- uses: actions/checkout@v4
id: checkout
with:
persist-credentials: false
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
id: semantic
with:
branches: |
[
'+([0-9])?(.{+([0-9]),x}).x',
'main',
'next',
'next-major',
{
name: 'beta',
prerelease: true
},
{
name: 'alpha',
prerelease: true
}
]
extra_plugins: |
@semantic-release/git
@semantic-release/changelog
env:
GIT_COMMITTER_NAME: github-actions[bot]
GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com
GIT_AUTHOR_NAME: github-actions[bot]
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com
- name: Publish To GitHub Package Registry
id: publish
if: steps.semantic.outputs.new_release_published == 'true'
run: echo "new release was published"
shell: bash
- name: Push updates to branch for major version
id: push_major
if: steps.semantic.outputs.new_release_published == 'true'
run: "git push https://x-access-token:${{ env.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git HEAD:refs/heads/v${{steps.semantic.outputs.new_release_major_version}}"
shell: bash