Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: NikitaSkrynnik <[email protected]>
  • Loading branch information
NikitaSkrynnik committed Jun 1, 2024
1 parent 9eec76f commit 3b7b762
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/check-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,17 @@ jobs:
images=$(grep -ro * -e "ghcr\.io\/networkservicemesh\/.*")
for image in $images; do
if [[ "$image" != *"${{ env.tag }}"* ]]; then
exit 1
exit 0
fi
done
exit 1
replace-params:
name: Replace params
runs-on: ubuntu-latest
needs: [check-tags]
if: ${{ always() && needs.check-tags.result == 'failure' }}
if: ${{ always() && needs.check-tags.result == 'success' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 3b7b762

Please sign in to comment.