Skip to content

Commit

Permalink
Merge pull request #82 from kubeshop/kylehodgetts/ci/get-api-websocke…
Browse files Browse the repository at this point in the history
…t-image-meta

CI: fetch api websocket image meta separately
  • Loading branch information
Kyle Hodgetts committed Nov 25, 2022
2 parents 8146f39 + b7815d6 commit 90669df
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@ jobs:
flavor: |
latest=true
- name: Docker Metadata for Kusk Gateway API Websocket
id: meta-websocket
uses: docker/metadata-action@v3
with:
images: kubeshop/kusk-gateway-api-websocket
tags: |
type=match,pattern=v(.*)
type=sha
flavor: |
latest=true
- name: setup-goreleaser-environment-variables
run: |
echo "VERSION=$(git describe --tags $(git rev-list --tags --max-count=1))" >> $GITHUB_ENV
Expand All @@ -70,8 +81,8 @@ jobs:
file: ./build/websocket/Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta-websocket.outputs.tags }}
labels: ${{ steps.meta-websocket.outputs.labels }}
build-args: |
TELEMETRY_TOKEN=${{ secrets.TELEMETRY_TOKEN }}
VERSION=${{ env.VERSION }}
Expand Down

0 comments on commit 90669df

Please sign in to comment.