Skip to content

Commit

Permalink
Merge pull request #28 from UNDP-Data/otag
Browse files Browse the repository at this point in the history
change conditional expression
  • Loading branch information
iferencik authored Nov 28, 2023
2 parents 81cd1a4 + 30253c5 commit 7778541
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
- name: Dump tags
run: |
echo "${{ steps.meta.outputs.tags }}"
echo "Tag is proper ${{ startsWith(steps.meta.outputs.tags, 'v') }}"
echo "Tag is proper ${{ contains(steps.meta.outputs.tags, ':v.') }}"
- name: Create release
if: ${{ startsWith(steps.meta.outputs.tags, 'v') }}
if: ${{ contains(steps.meta.outputs.tags, ':v.') }}
id: create_release
uses: ncipollo/[email protected]
env:
Expand Down

0 comments on commit 7778541

Please sign in to comment.