-
Notifications
You must be signed in to change notification settings - Fork 10
64 lines (55 loc) · 2.12 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
name: Release
on:
pull_request:
types: [closed]
paths:
- '.github/project.yml'
jobs:
release:
runs-on: ubuntu-latest
name: release
if: ${{github.event.pull_request.merged == true}}
env:
GITHUB_TOKEN: ${{secrets.BF2ROBOT_TOKEN}}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
token: ${{secrets.BF2ROBOT_TOKEN}}
- name: Retrieve Project Metadata
uses: radcortez/project-metadata-action@243817f1e0f2b4df4e012fc17efc45cff166425d
id: metadata
with:
github-token: ${{secrets.GITHUB_TOKEN}}
metadata-file-path: '.github/project.yml'
local-file: true
- name: Setup JDK
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Setup Docker
uses: docker-practice/actions-setup-docker@v1
- name: Perform Maven Release
run: |
git config --global user.name "bf2robot"
git config --global user.email "[email protected]"
git checkout -b release
mvn -B release:prepare -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}}
git checkout ${{github.base_ref}}
git rebase release
export QUARKUS_CONTAINER_IMAGE_REGISTRY="${{secrets.IMAGE_REPO_HOSTNAME}}"
export QUARKUS_CONTAINER_IMAGE_GROUP="${{secrets.IMAGE_REPO_NAMESPACE}}"
export QUARKUS_CONTAINER_IMAGE_USERNAME="${{secrets.IMAGE_REPO_USERNAME}}"
export QUARKUS_CONTAINER_IMAGE_PASSWORD="${{secrets.IMAGE_REPO_PASSWORD}}"
# Build and push the release images using the commit tagged in `release:prepare`
mvn -B -P docker release:perform
- name: Push Release Tag
run: |
git push
git push --tags
- name: Create GitHub Release
uses: radcortez/milestone-release-action@98bd3321583e9bdbbe15c08fa4b2249371efaeaa
with:
github-token: ${{secrets.GITHUB_TOKEN}}
milestone-title: ${{steps.metadata.outputs.current-version}}