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 39de249 commit e8d1585Copy full SHA for e8d1585
.github/workflows/init_container.yaml
@@ -40,6 +40,8 @@ jobs:
40
]
41
runs-on: ubuntu-latest
42
name: Build and push Docker image
43
+ env:
44
+ base_image_tag: alpine-3.20.0
45
steps:
46
- name: Set release tag
47
shell: bash
@@ -111,8 +113,6 @@ jobs:
111
113
112
114
- name: Build and push ${{ matrix.agents.name }} container
115
uses: docker/build-push-action@v4
- env:
- base_image_tag: alpine-3.20.0
116
with:
117
context: .
118
file: ./lightrun-init-agent/Dockerfile
@@ -121,7 +121,7 @@ jobs:
121
tags: ${{steps.set_docker_tags.outputs.DOCKER_TAGS}}
122
build-args: |
123
FILE=${{ matrix.agents.file }}
124
- base_image_tag=$base_image_tag
+ base_image_tag=${{ env.base_image_tag }}
125
126
- name: Slack Notification
127
if: always()
0 commit comments