-
Notifications
You must be signed in to change notification settings - Fork 18
86 lines (74 loc) · 2.33 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
name: release
on:
push:
branches:
- main
tags:
- 'v*.*.*'
pull_request:
types:
- labeled
permissions:
contents: write
jobs:
release:
if: github.event.action != 'labeled'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Bump version on merging Pull Requests with specific labels.
# (bump:major,bump:minor,bump:patch)
- id: bumpr
if: "!startsWith(github.ref, 'refs/tags/')"
uses: haya14busa/action-bumpr@v1
# Get tag name.
- id: tag
uses: haya14busa/action-cond@v1
with:
cond: "${{ startsWith(github.ref, 'refs/tags/') }}"
if_true: ${{ github.ref }}
if_false: ${{ steps.bumpr.outputs.next_version }}
release-check:
if: github.event.action == 'labeled'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: bumpr
name: Post bumpr status comment
uses: haya14busa/action-bumpr@v1
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- id: filter
uses: dorny/paths-filter@v3
with:
filters: |
blender:
- 'src/XRFeitoriaBpy/*'
unreal:
- 'src/XRFeitoriaUnreal/*'
- name: Determine next version
run: |
# Get the next version from the previous step
VERSION="${{ steps.bumpr.outputs.next_version }}"
if [ -z "$VERSION" ]; then
echo "No version bump needed."
exit 0
fi
# Git configuration
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git tag -a "$VERSION" -m "Release $VERSION"
pip install .
# Update plugin info
if ${{ steps.filter.outputs.blender == 'true' }}; then
python -m xrfeitoria.utils.publish_plugins update-bpy-version
fi
if ${{ steps.filter.outputs.unreal == 'true' }}; then
python -m xrfeitoria.utils.publish_plugins update-uplugin-version
fi
python -m xrfeitoria.utils.publish_plugins update-plugin-info
git add .
git commit -m "[bot] Update plugin info"
git push origin HEAD:${{ github.head_ref }}