Skip to content

Commit 891038c

Browse files
committed
update promtail
1 parent 0cb9554 commit 891038c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/actions/start-promtail/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ runs:
66
- name: Start Promtail container
77
shell: bash
88
run: |
9+
CONTAINER_NAME="promtail=${{github.run_id}}"
910
docker run -d \
10-
--name=promtail \
11+
--name="$CONTAINER_NAME" \
1112
-v "${{ github.workspace }}/test/dashboard/prep/promtail.yaml:/etc/promtail/config.yaml" \
1213
-v "${{ github.workspace }}/test/dashboard/logs:/var/log" \
1314
-e TEST_OUTDIR=test/dashboard/logs \

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,10 @@ jobs:
156156
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
157157
with:
158158
go-version-file: 'go.mod'
159-
- name: Clean Docker Environment
160-
run: |
161-
docker system prune -af --volumes
162-
docker builder prune -af
159+
# - name: Clean Docker Environment
160+
# run: |
161+
# docker system prune -af --volumes
162+
# docker builder prune -af
163163
- name: Download Packages
164164
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
165165
with:

0 commit comments

Comments
 (0)