We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc28885 + 12387f8 commit 6bdaa93Copy full SHA for 6bdaa93
1 file changed
.github/workflows/ci.yaml
@@ -190,12 +190,20 @@ jobs:
190
steps:
191
- name: Checkout
192
uses: actions/checkout@v3
193
+ - name: Docker Login
194
+ uses: docker/login-action@v2.2.0
195
+ with:
196
+ registry: ${{ secrets.REGISTRY_HOST }}
197
+ username: ${{ secrets.REGISTRY_USER }}
198
+ password: ${{ secrets.REGISTRY_PASSWORD }}
199
- name: Set up Go
200
uses: actions/setup-go@v4
201
with:
202
go-version-file: 'go.mod'
203
- name: Build
204
run: |
205
+ trap 'echo -e "$output"' EXIT
206
+
207
output=$(go run ./hack/lifecycle/main.go --tag=${{ env.PUBLIC_IMAGE_DEV_REPO }}/lifecycle 2>&1)
208
image=$(echo "$output" | grep "saved lifecycle" | awk -F "saved lifecycle image: " '{print $2}')
209
mkdir images
0 commit comments