mirror of
https://github.com/oneclickvirt/backtrace.git
synced 2025-04-22 04:02:07 +08:00
fix: 修复说明的tag自动修改
This commit is contained in:
parent
a2a95e0444
commit
3995e1a1bd
26
.github/workflows/ci.yaml
vendored
26
.github/workflows/ci.yaml
vendored
@ -7,25 +7,45 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go: [ '1.22.x' ]
|
go: ['1.22.x']
|
||||||
os: [ ubuntu-latest ]
|
os: [ubuntu-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: ${{ matrix.go }}
|
go-version: ${{ matrix.go }}
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test ./... -coverprofile=coverage.txt
|
run: go test ./... -coverprofile=coverage.txt
|
||||||
|
|
||||||
- name: Create Tag
|
- name: Create Tag
|
||||||
if: success() # 仅在测试成功时运行
|
if: success()
|
||||||
run: |
|
run: |
|
||||||
git config --global user.name 'github-actions'
|
git config --global user.name 'github-actions'
|
||||||
git config --global user.email 'github-actions@github.com'
|
git config --global user.email 'github-actions@github.com'
|
||||||
TAG="v0.0.5-$(date +'%Y%m%d%H%M%S')"
|
TAG="v0.0.5-$(date +'%Y%m%d%H%M%S')"
|
||||||
git tag $TAG
|
git tag $TAG
|
||||||
git push origin $TAG
|
git push origin $TAG
|
||||||
|
echo "TAG=$TAG" >> $GITHUB_ENV
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Update README.md
|
||||||
|
if: success()
|
||||||
|
run: |
|
||||||
|
sed -i "s|go get github.com/oneclickvirt/backtrace@.*|go get github.com/oneclickvirt/backtrace@${TAG}|" README.md
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.TAG }}
|
||||||
|
|
||||||
|
- name: Commit and Push README.md
|
||||||
|
if: success()
|
||||||
|
run: |
|
||||||
|
git add README.md
|
||||||
|
git commit -m "Update README.md with new tag ${TAG}"
|
||||||
|
git push origin main
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in New Issue
Block a user