-
Notifications
You must be signed in to change notification settings - Fork 219
80 lines (65 loc) · 2.35 KB
/
alpha_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
name: Alpha Release
on:
pull_request:
types: [ labeled ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
if: ${{ github.event.label.name == 'release-alpha' }}
# The type of runner that the job will run on
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
contents: write
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@master
- name: Merge develop into transifex
uses: devmasx/merge-branch@master
with:
type: now
from_branch: develop-clone
target_branch: transifex-clone
github_token: ${{ secrets.GH_WORKFLOW_TOKEN }}
message: Merge develop into transifex
- name: Checkout transifex branch
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_WORKFLOW_TOKEN }}
ref: 'transifex-clone'
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Install npm Dependencies
run: npm ci
- name: Setup WP-CLI
uses: godaddy-wordpress/setup-wp-cli@1
- name: Update Pot file with new translatable strings
run: npm run makepot
- name: Generate mo files
uses: text-adi/build-language-i18n-action@v1
env:
DIR: languages
- name: Commit all changes to transifex branch
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Prepare transifex before alpha release
commit_user_name: WP Media GitHub Actions Bot
- name: Checkout develop branch
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_WORKFLOW_TOKEN }}
ref: 'develop-clone'
- name: Merge transifex into develop
uses: devmasx/merge-branch@master
with:
type: now
from_branch: transifex-clone
target_branch: develop-clone
github_token: ${{ secrets.GH_WORKFLOW_TOKEN }}
message: Merge transifex into develop