-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (49 loc) · 1.47 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
name: Release
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run make
run: make
- name: Run make check
run: make check
publish:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Configure git
run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Prepare release
run: mvn --batch-mode release:prepare
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Perform release
run: mvn --batch-mode release:perform
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Figure out the project version from pom.xml
run: |
# Go back to the commit before the SNAPSHOT
git reset --hard HEAD~1
echo "VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> "$GITHUB_ENV"
- name: Create Release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: apm-proto-${{ env.VERSION }}
release_name: apm-proto ${{ env.VERSION }}
draft: false
prerelease: false