We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be30eef commit 1d25954Copy full SHA for 1d25954
.github/workflows/ubuntu.yml
@@ -36,9 +36,11 @@ jobs:
36
make -j $(nproc)
37
- name: Download otelcol
38
run: |
39
- curl -sLo - https://github.com/\
40
- open-telemetry/opentelemetry-collector-releases/releases/download/\
41
- v0.115.1/otelcol_0.115.1_linux_amd64.tar.gz | tar -xzv
+ LATEST=open-telemetry/opentelemetry-collector-releases/releases/latest
+ TAG=$(curl -s https://api.github.com/repos/${LATEST} |
+ jq -r .tag_name)
42
+ curl -sLo - https://github.com/${LATEST}/download/\
43
+ otelcol_${TAG:1}_linux_amd64.tar.gz | tar -xzv
44
- name: Install test dependencies
45
run: pip install -r tests/requirements.txt
46
- name: Run tests
0 commit comments