Skip to content

deps(apm-agent-java): Update APM Agent Java to 1.51.0 (#317) #11

deps(apm-agent-java): Update APM Agent Java to 1.51.0 (#317)

deps(apm-agent-java): Update APM Agent Java to 1.51.0 (#317) #11

Workflow file for this run

---
# Creates a new GitHub release if the version in .version changed in the main branch.
name: create-tag
on:
push:
branches:
- main
paths:
- .version
permissions:
contents: read
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # also fetch tags
- run: make create-release
env:
GH_TOKEN: ${{ secrets.CREATE_TAG_TOKEN }}