-
Notifications
You must be signed in to change notification settings - Fork 0
110 lines (103 loc) · 3.6 KB
/
release.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
103
104
105
106
107
108
109
name: "Release SDK"
on:
# no timezone support so cron runs in UTC time for now
schedule:
- cron: "8 17 * * 1"
workflow_dispatch:
workflow_call:
jobs:
# SDK release is done from public main branch.
confirm-public-repo-main-branch:
name: "Confirm release is run from public/main branch"
uses: michaeltchuang/.github/.github/workflows/release-branch-context-check.yml@main
create-release-branch:
name: "Create Release Branch"
runs-on: ubuntu-latest
needs: confirm-public-repo-main-branch
env:
GITHUB_TOKEN: ${{ secrets.MICHAELTCHUANG_BOT }}
GIT_AUTHOR_NAME: michaeltchuang
GIT_AUTHOR_EMAIL: [email protected]
GIT_COMMITTER_NAME: michaeltchuang
GIT_COMMITTER_EMAIL: [email protected]
steps:
- name: "Checkout main branch"
uses: actions/checkout@v4
with:
token: ${{ secrets.MICHAELTCHUANG_BOT }}
repository: michaeltchuang/a-day-in-my-bobalife
ref: main
submodules: recursive
- name: "Import GPG Key"
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
- name: "Create and push release branch"
run: |
git checkout -b release/${{ github.run_number }}
git push origin release/${{ github.run_number }}
semantic-release:
name: "Semantic Release"
needs: create-release-branch
runs-on: macos-latest
env:
GITHUB_TOKEN: ${{ secrets.MICHAELTCHUANG_BOT }}
GIT_AUTHOR_NAME: michaeltchuang
GIT_AUTHOR_EMAIL: [email protected]
GIT_COMMITTER_NAME: michaeltchuang
GIT_COMMITTER_EMAIL: [email protected]
steps:
- name: "Checkout main branch"
uses: actions/checkout@v4
with:
token: ${{ secrets.MICHAELTCHUANG_BOT }}
fetch-depth: 0
ref: main
- name: "Import GPG Key"
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
- name: "Merge release branch into main branch"
run: |
git pull origin release/${{ github.run_number }}
- name: "Semantic Release"
working-directory: HaveAMagicalDay
run: |
npx \
-p lodash \
-p semantic-release@17 \
-p @semantic-release/changelog@5 \
-p @semantic-release/git@9 \
-p @semantic-release/exec@5 \
-p [email protected] \
semantic-release
- name: "Push automated release commits to release branch"
run: |
git push origin HEAD:release/${{ github.run_number }}
sync-repository:
name: "Sync Repository"
needs: semantic-release
runs-on: ubuntu-latest
steps:
- name: "Checkout main branch"
uses: actions/checkout@v4
with:
fetch-depth: 0
repository: ${{ github.repository }}
token: ${{ secrets.MICHAELTCHUANG_BOT }}
ref: main
- name: "Merge release branch into main branch"
run: |
git pull origin release/${{ github.run_number }}
- name: "Push release commits to main branch"
run: |
git push origin HEAD:main
- name: "Delete release branch"
run: |
git push --delete origin release/${{ github.run_number }}