-
Notifications
You must be signed in to change notification settings - Fork 1
84 lines (79 loc) · 2.58 KB
/
on-push-main.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
name: Release
on:
pull_request:
branches:
- main
types: [closed]
permissions:
contents: write
pull-requests: write
env:
PROJECT_NAME: ${{ github.event.repository.name }}
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
jobs:
get-next-version:
name: Determine Next Version
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.merged }}
outputs:
next-version: ${{ steps.semver.outputs.next || steps.semver.outputs.current }}
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get next version
id: semver
uses: ietf-tools/semver-action@main
with:
token: ${{ github.token }}
patchList: fix, refactor, misc
noVersionBumpBehavior: current
noNewCommitBehavior: current
release-please:
name: Create a Release and a version tag
needs: [get-next-version]
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.merged }}
outputs:
image-tag: ${{ steps.release-please.outputs.tag_name }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Release please
uses: google-github-actions/release-please-action@v3
id: release-please
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: php
package-name: plugin-woocommerce
default-branch: main
changelog-types: |
[
{"type":"feat","section":"Features","hidden":false},
{"type":"fix","section":"Bug Fixes","hidden":false},
{"type":"refactor","section":"Refactoring","hidden":false},
{"type":"misc","section":"Miscellaneous","hidden":false}
]
extra-files: |
lengow.php
README.md
- name: Debug outputs
env:
RP_OUT: ${{ toJson(steps.release-please.outputs) }}
run: echo "${{ env.RP_OUT }}"
- name: Checkout appropriate branch
uses: actions/checkout@v4
with:
fetch-depth: 0
# ref: ${{ steps.release-please.outputs.pr.headBranchName }}
ref: release-please--branches--main--components--plugin-woocommerce
- name: Generate MD5 Hashes
run: php tools/checkmd5.php
- name: Commit MD5 Hashes
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
git add config/checkmd5.csv
git commit -m "misc(checksum): Update md5 checksums"
git push