Skip to content

Commit

Permalink
fix doc and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
eeliu committed Oct 10, 2024
1 parent 5ed2744 commit 74657b7
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/publish-collector-agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

env:
REGISTRY_IMAGE: ghcr.io/${{ github.repository }}/collector-agent
TAG_NAME: ${{ github.head_ref || github.ref_name }}
TAG_NAME: v0.7

jobs:
collector-agent:
Expand Down Expand Up @@ -58,12 +58,11 @@ jobs:
with:
context: collector-agent
platforms: ${{ matrix.platform }}
# tags: |
# ghcr.io/${{ github.repository }}/collector-agent:${{ inputs.tag }}
# ghcr.io/${{ github.repository }}/collector-agent:latest
tags: |
ghcr.io/${{ github.repository }}/collector-agent:${{ env.TAG_NAME }}
github-token: ${{ secrets.GITHUB_TOKEN }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
# labels: ${{ steps.meta.outputs.labels }}
# outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true

- name: Export digest
run: |
Expand Down Expand Up @@ -132,7 +131,7 @@ jobs:
id: release-ca
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goversion: "https://dl.google.com/go/go1.18.10.linux-amd64.tar.gz"
goversion: 1.19
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
project_path: "collector-agent"
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,5 @@ x86
output
config.nice.bat
configure.bat
configure.js
configure.js
*.cap
Binary file removed collector-agent/1.cap
Binary file not shown.
2 changes: 1 addition & 1 deletion collector-agent/makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

TAG ?=v0.6.4
TAG ?=v0.7

.PHONY: default
default: server ;
Expand Down
2 changes: 1 addition & 1 deletion common/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v0.6.0
## v0.6.0 2024-10-10
- refactor span json protocol
- add async api
- data structure change: multiple map to list
Expand Down
2 changes: 1 addition & 1 deletion common/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

```shell
$ cmake -DWITH_TEST_CASE=1 -DWITH_CODECOVERAGE=1 -DCMAKE_BUILD_TYPE=Debug ..
$ ./bin/TestCommon --gtest_filter=node.wakeTrace
$ ./bin/TestCommon
```

0 comments on commit 74657b7

Please sign in to comment.