Skip to content

Commit

Permalink
Fix release pipeline definition to quote image tag
Browse files Browse the repository at this point in the history
  • Loading branch information
renatolfc committed Nov 29, 2024
1 parent 41bd31a commit e8728c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
ROOT=$(git rev-parse --show-toplevel)
CONSTANTS_MODULE="$ROOT"/src/vibe_core/vibe_core/cli/constants.py
sed -i "s|DEFAULT_IMAGE_TAG.*|DEFAULT_IMAGE_TAG = ${{ github.run_id }}|g" "$CONSTANTS_MODULE"
sed -i "s|DEFAULT_IMAGE_TAG.*|DEFAULT_IMAGE_TAG = \"${{ github.run_id }}\"|g" "$CONSTANTS_MODULE"
- name: Check modified file
run: cat src/vibe_core/vibe_core/cli/constants.py
- name: Commit changes
Expand Down

0 comments on commit e8728c7

Please sign in to comment.