-
Notifications
You must be signed in to change notification settings - Fork 8
104 lines (86 loc) · 3.05 KB
/
pr-build-release.yaml
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
name: PR Build and Release package
on:
pull_request_target:
types:
- closed
branches:
- 'master'
jobs:
release:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.DIGITAL_QHEALTH_WORKFLOW }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
node-version: '16'
cache: npm
- name: Configure Git
run: |
git config --global user.email "${{ secrets.GH_ORG_EMAIL }}"
git config --global user.name "${{ secrets.GH_ORG_NAME }}"
- name: npm install
run: npm ci
- name: Bump version
run: |
# Get the label names from the pull request event
LABELS=$(jq -r '.pull_request.labels[].name' "$GITHUB_EVENT_PATH")
# Convert the labels into an array
IFS=',' read -ra LABEL_ARRAY <<< "$LABELS"
# Initialize variable to store the highest label
HIGHEST_LABEL=""
# Loop through the labels and check for "major, minor, patch"
for LABEL in "${LABEL_ARRAY[@]}"; do
if [ "$LABEL" == "major" ] || [ "$LABEL" == "minor" ] || [ "$LABEL" == "patch" ]; then
HIGHEST_LABEL="$LABEL"
fi
done
# Check if a valid label was found
if [ -n "$HIGHEST_LABEL" ]; then
echo "NEW_VERSION=$(npm --no-git-tag-version version $HIGHEST_LABEL)" >> $GITHUB_ENV
echo "RELEASE_TAG=latest" >> $GITHUB_ENV
else
echo "No version bump label found, skipping release"
exit 0
fi
- name: npm build webpack
run: npm run build
- name: Update changelog
uses: superfaceai/release-changelog-action@v1
with:
path-to-changelog: CHANGELOG.md
version: ${{ env.NEW_VERSION }}
operation: release
- name: Publish
run: npm publish --access public --tag ${{ env.RELEASE_TAG }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_ACCESS_TOKEN }}
- name: Commit CHANGELOG.md and package.json changes and create tag
run: |
git add .
git commit -m "chore: release ${{ env.NEW_VERSION }}"
git tag ${{ env.NEW_VERSION }}
- name: Push changes to repository
env:
token: ${{ secrets.DIGITAL_QHEALTH_WORKFLOW }}
run: |
git push origin && git push --tags
- name: Get version changelog
id: get-changelog
uses: superfaceai/release-changelog-action@v1
with:
path-to-changelog: CHANGELOG.md
version: ${{ env.NEW_VERSION }}
operation: read
- name: Update GitHub release documentation
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.NEW_VERSION }}
body: ${{ steps.get-changelog.outputs.changelog }}
env:
token: ${{ secrets.DIGITAL_QHEALTH_WORKFLOW }}