Merge pull request #22 from data-catering/update-readme-v1.5.0 #676
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build docker images | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| push: | |
| branches: | |
| - "main" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKER_HUB_USER }} | |
| password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
| - name: Checkout duckdb repo | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| repository: duckdb/duckdb | |
| path: build/duckdb | |
| - name: Run build | |
| id: build | |
| run: ./docker_image.sh | |
| - name: Create Pull Request | |
| if: steps.build.outputs.needs_readme_update == 'true' | |
| uses: peter-evans/create-pull-request@v8 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| commit-message: "Update README.md to DuckDB version ${{ steps.build.outputs.latest_version }}" | |
| title: "Update README.md to DuckDB version ${{ steps.build.outputs.latest_version }}" | |
| body: | | |
| This PR updates the README.md file to reflect the latest DuckDB version (${{ steps.build.outputs.latest_version }}). | |
| Changes: | |
| - Updated version references in README.md from ${{ steps.build.outputs.current_version }} to ${{ steps.build.outputs.latest_version }} | |
| This update was automatically generated by the GitHub Actions workflow. | |
| branch: update-readme-${{ steps.build.outputs.latest_version }} | |
| delete-branch: true |