Skip to content

Added workflow_dispatch so that the workflow can be tested manually (#5) #7

Added workflow_dispatch so that the workflow can be tested manually (#5)

Added workflow_dispatch so that the workflow can be tested manually (#5) #7

Workflow file for this run

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