Skip to content

Commit

Permalink
Merge pull request #39 from mindsdb/bugfix/fix_mindsdb_update_workflow
Browse files Browse the repository at this point in the history
Fixed Typo in Step for Committing docker-compose File in Workflow
  • Loading branch information
ZoranPandovski authored Jun 5, 2024
2 parents 6e45e68 + efb9cae commit 4072d5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bump-mindsdb-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
- name: Update MindsDB version
run: |
# Update MindsDB version
sed -i 's|mindsdb/mindsdb:v[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*|mindsdb/mindsdb:v${{ github.event.client_payload.version }}|' docker-compose.yml
sed -i 's|mindsdb/mindsdb:v[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*|mindsdb/mindsdb:v${{ github.event.client_payload.version }}|' docker-compose.yaml
# Commit changes
git add docker-compose.yml
git add docker-compose.yaml
git commit -m "Update MindsDB version to ${{ github.event.client_payload.version }}"
- name: Push changes
Expand All @@ -56,7 +56,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Bump MindsDB version to ${{ github.event.client_payload.version }}"
title: "Bump MindsDB version to ${{ github.event.client_payload.version }}"
body: "Bump MindsDB version to ${{ github.event.client_payload.version }}"
body: "This is an automated PR that bumps the version of the MindsDB image to ${{ github.event.client_payload.version }} in response to the latest release that has been made."
branch: mindsdb-version-update-${{ github.event.client_payload.version }}
base: main
labels: "automated-pr"
Expand Down

0 comments on commit 4072d5a

Please sign in to comment.