Skip to content

Commit

Permalink
🔖 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lltx committed Mar 7, 2024
1 parent 672e17e commit 0b132fa
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"baseBranches": ["jdk17-dev", "boot-dev"],
"extends": [
"config:recommended"
]
}
34 changes: 34 additions & 0 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: publish github release

on:
workflow_dispatch:
inputs:
releaseversion:
description: 'Release version'
required: true
default: '3.7.0'

jobs:
publish-github-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate changelog
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GH_TOKEN }}

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.event.inputs.releaseversion }}
release_name: ${{ github.event.inputs.releaseversion }}
body: |
### Things that changed in this release
${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: ${{ contains(github.event.inputs.releaseversion, '-') }}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@

### 配置应用

<img src='https://minio.pigx.top/oss/202403/1709779710.png' alt='1709779710'/>

这里以3个微服务来举例子。

1. `log-trace-gateway-demo` 充当网关功能
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.pig4cloud.plugin</groupId>
<artifactId>log-trace-spring-boot3-starter</artifactId>
<version>3.2.0-SNAPSHOT</version>
<version>3.2.0</version>
<packaging>jar</packaging>

<name>log-trace-spring-boot-starter</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ com.pig4cloud.trace.instrument.servlet.TraceServletConfiguration
com.pig4cloud.trace.instrument.reactive.TraceReactiveConfiguration
com.pig4cloud.trace.instrument.gateway.TraceGatewayAutoConfiguration
com.pig4cloud.trace.instrument.feign.TraceFeignClientAutoConfiguration
com.pig4cloud.trace.instrument.zuul.TraceZuulAutoConfiguration
com.pig4cloud.trace.instrument.resttemplate.TraceRestTemplateConfiguration
com.pig4cloud.trace.instrument.dubbo.TraceDubboConfiguration

0 comments on commit 0b132fa

Please sign in to comment.