mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-04 01:46:28 +00:00 
			
		
		
		
	Minor fixes in the just added update-version CI
This commit is contained in:
		
							
								
								
									
										12
									
								
								.github/workflows/update-cargo-toml-version.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								.github/workflows/update-cargo-toml-version.yml
									
									
									
									
										vendored
									
									
								
							@@ -9,11 +9,12 @@ on:
 | 
			
		||||
 | 
			
		||||
env:
 | 
			
		||||
  NEW_VERSION: ${{ github.event.inputs.new_version }}
 | 
			
		||||
  NEW_BRANCH: update-version-${{ github.event.inputs.new_version }}
 | 
			
		||||
  GH_TOKEN: ${{ secrets.MEILI_BOT_GH_PAT }}
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  update-version-cargo-toml:
 | 
			
		||||
    name: Update version in cargo.toml files
 | 
			
		||||
    name: Update version in Cargo.toml file
 | 
			
		||||
    runs-on: ubuntu-20.04
 | 
			
		||||
    steps:
 | 
			
		||||
      - uses: actions/checkout@v3
 | 
			
		||||
@@ -24,18 +25,17 @@ jobs:
 | 
			
		||||
          override: true
 | 
			
		||||
      - name: Install sd
 | 
			
		||||
        run: cargo install sd
 | 
			
		||||
      - name: Update files
 | 
			
		||||
      - name: Update all Cargo.toml files
 | 
			
		||||
        run: |
 | 
			
		||||
          echo "$GITHUB_REF_NAME"
 | 
			
		||||
          raw_new_version=$(echo $NEW_VERSION | cut -d 'v' -f 2)
 | 
			
		||||
          new_string="version = \"$raw_new_version\""
 | 
			
		||||
          sd '^version = "\d+.\d+.\w+"$' "$new_string" */Cargo.toml
 | 
			
		||||
      - name: Commits and push the changes to the ${{ github.ref_name }} branch
 | 
			
		||||
      - name: Commit and push the changes to the ${{ env.NEW_BRANCH }} branch
 | 
			
		||||
        uses: EndBug/add-and-commit@v9
 | 
			
		||||
        with:
 | 
			
		||||
          message: "Update version for the next release (${{ env.NEW_VERSION }}) in Cargo.toml files"
 | 
			
		||||
          new_branch: update-version-${{ env.NEW_VERSION }}
 | 
			
		||||
      - name: Create the PR
 | 
			
		||||
          new_branch: ${{ env.NEW_BRANCH }}
 | 
			
		||||
      - name: Create the PR pointing to ${{ github.ref_name }}
 | 
			
		||||
        run: |
 | 
			
		||||
          gh pr create \
 | 
			
		||||
            --title "Update version for the next release ($NEW_VERSION) in Cargo.toml files" \
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user