Skip to content

Commit

Permalink
don’t exclude govpp package from go.mod deps.
Browse files Browse the repository at this point in the history
Signed-off-by: Vitaliy Guschin <[email protected]>
  • Loading branch information
Vitaliy Guschin committed Feb 29, 2024
1 parent b142d78 commit 59cf82e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/check-gomod-deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
run: |
cat go.mod |
grep 'github.com/networkservicemesh/.* v' |
grep -v 'github.com/networkservicemesh/govpp.*' |
grep -v 'github.com/networkservicemesh/vpphelper.*' |
grep -v 'github.com/networkservicemesh/.* ${{ inputs.tag }}' || exit 0;
exit 1;
7 changes: 6 additions & 1 deletion .github/workflows/docker-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: Release docker images
on:
workflow_call:
inputs:
suffix:
description: optional image name suffix
type: string
default: ""
required: false
tag:
type: string
required: true
Expand Down Expand Up @@ -35,4 +40,4 @@ jobs:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: "ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ inputs.tag }}"
tags: "ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}${{ inputs.suffix }}:${{ inputs.tag }}"

0 comments on commit 59cf82e

Please sign in to comment.