Skip to content

Commit

Permalink
Non-matching semver tags
Browse files Browse the repository at this point in the history
Manually hardcoding a different value
  • Loading branch information
MukuFlash03 committed Oct 4, 2024
1 parent fd5585f commit c2ac5e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/reusable_image_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ jobs:
# type=ref,event=branch
# type=ref,event=tag
type=semver,pattern=v{{version}}
type=semver,pattern=v{{version}},value=${{ steps.fetch-latest-release-tags.outputs.tag_name }}
# type=semver,pattern=v{{version}},value=${{ steps.fetch-latest-release-tags.outputs.tag_name }}
type=semver,pattern=v{{version}},value=v4.2.6
# type=raw,value=latest,enable=${{ github.ref == format('refs/tags/{0}', steps.fetch-latest-release-tags.outputs.tag_name ) }}
- name: Login to DockerHub
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-with-manual-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Run test-with-manual-install for 15 seconds
- name: Run test-with-manual-install for 10 seconds
run: |
echo "Starting 15-second workflow"
sleep 15
echo "15-second workflow completed"
echo "Starting 10-second workflow"
sleep 10
echo "10-second workflow completed"
- name: Success-Failure Test Case
run: |
Expand Down

0 comments on commit c2ac5e3

Please sign in to comment.