-
Notifications
You must be signed in to change notification settings - Fork 22
131 lines (112 loc) · 3.54 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
name: '🚀 Release'
on:
push:
branches:
- main
- develop
- alpha
workflow_dispatch:
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: true
env:
PHP_VERSION: ${{ github.ref_name == 'alpha' && '7.4' || '7.1' }}
NODE_VERSION: 18
jobs:
release:
name: 'Build and publish 🚀'
runs-on: ubuntu-22.04
outputs:
released: ${{ steps.release.outputs.released }}
version: ${{ steps.release.outputs.version }}
steps:
- uses: myparcelnl/actions/setup-git-credentials@v3
id: credentials
with:
app-id: ${{ secrets.MYPARCEL_APP_ID }}
private-key: ${{ secrets.MYPARCEL_APP_PRIVATE_KEY }}
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ steps.credentials.outputs.token }}
- uses: ./.github/actions/install
- uses: myparcelnl/actions/semantic-release@v3
id: release
with:
token: ${{ steps.credentials.outputs.token }}
write-summary: true
deploy-svn:
needs: release
if: github.ref == 'refs/heads/main' && needs.release.outputs.released == 'true'
runs-on: ubuntu-22.04
env:
ASSETS_DIR: ./.wordpress-assets
BUILD_DIR: ./.wordpress-dist
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install
- name: 'Trim leading "v" from version number'
id: prepare
run: |
VERSION=${{ needs.release.outputs.version }}
echo "version=${VERSION#v}" >> $GITHUB_OUTPUT
- name: 'Create build'
run: |
node ./private/updateVersion.cjs ${{ steps.prepare.outputs.version }}
yarn build
- name: 'Create dist folder'
run: |
bash ./private/bash/createDistFolder.sh ${{ env.BUILD_DIR }}
- uses: 10up/action-wordpress-plugin-deploy@stable
env:
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
ASSETS_DIR: ${{ env.ASSETS_DIR }}
BUILD_DIR: ${{ env.BUILD_DIR }}
SLUG: woocommerce-myparcel
VERSION: ${{ steps.prepare.outputs.version }}
rebase-develop:
name: 'Rebase develop onto main'
uses: ./.github/workflows/rebase.yml
secrets: inherit
needs: release
if: always() && github.ref == 'refs/heads/main'
with:
base: 'main'
target: 'develop'
force: ${{ needs.release.outputs.released == 'true' }}
rebase-prs:
name: 'Rebase pull requests'
needs:
- release
- rebase-develop
if: always()
runs-on: ubuntu-22.04
steps:
- uses: myparcelnl/actions/setup-app-credentials@v3
id: credentials
with:
app-id: ${{ secrets.MYPARCEL_APP_ID }}
private-key: ${{ secrets.MYPARCEL_APP_PRIVATE_KEY }}
- uses: peter-evans/rebase@v2
with:
token: ${{ steps.credentials.outputs.token }}
base: ${{ github.ref_name }}
exclude-drafts: true
exclude-labels: 'hotfix'
prune-releases:
needs: release
if: github.ref == 'refs/heads/alpha' && needs.release.outputs.released == 'true'
runs-on: ubuntu-22.04
steps:
- uses: myparcelnl/actions/setup-app-credentials@v3
id: credentials
with:
app-id: ${{ secrets.MYPARCEL_APP_ID }}
private-key: ${{ secrets.MYPARCEL_APP_PRIVATE_KEY }}
- uses: dev-drprasad/[email protected]
with:
keep_latest: 1
delete_tag_pattern: alpha
env:
GITHUB_TOKEN: ${{ steps.credentials.outputs.token }}