Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/transport-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: Transport CI - Dependency Update and Docker Build

on:
push:
tags:
- "core/v*" # Triggers dependency update
- "transports/v*" # Triggers docker build (for manual tags)
branches:
- test/gh-actions
# tags:
# - "core/v*" # Triggers dependency update
# - "transports/v*" # Triggers docker build (for manual tags)

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion transports/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --- First Stage: Builder image ---
FROM golang:1.24-alpine AS builder
WORKDIR /app

ENV GOPATH=/go
# Install dependencies in a single layer
RUN apk add --no-cache upx

Expand Down