Skip to content

Commit

Permalink
chore: Remove 'v' prefix from release tag in CI workflow that caused …
Browse files Browse the repository at this point in the history
…problems in docker build (langflow-ai#4819)

* Remove redundant 'v' prefix from release tag in CI workflow

* Add run-name to Docker Build and Push workflow for better traceability
  • Loading branch information
ogabrielluiz authored Nov 25, 2024
1 parent 7961cb2 commit 7b7513a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Docker Build and Push
run-name: Docker Build and Push @${{ inputs.release_type }} by @${{ github.actor }}
on:
workflow_call:
inputs:
Expand Down Expand Up @@ -61,7 +62,7 @@ jobs:
- name: Verify a main version exists
if: ${{ inputs.main_version == '' }}
run: |
# due to our how we split packages, we need to have a main version to check out.
# due to our how we split packages, we need to have a main version to check out.
echo "Must specify a main version to check out."
exit 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,5 +238,5 @@ jobs:
draft: false
generateReleaseNotes: true
prerelease: ${{ inputs.pre_release }}
tag: v${{ needs.release-main.outputs.version }}
tag: ${{ needs.release-main.outputs.version }}
commit: ${{ github.ref }}

0 comments on commit 7b7513a

Please sign in to comment.