Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(github): sync version to instill.tech website #968

Merged
merged 7 commits into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/sync-version-with-website.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This workflow will open a PR in https://github.com/instill-ai/instill.tech
# updating the doc version in the website.

name: Sync release version with instill.tech website

on:
release:
types: [published]

permissions:
contents: read

jobs:
update-website:

runs-on: ubuntu-latest

steps:
- name: Checkout instill.tech repository
uses: actions/checkout@v4
with:
repository: instill-ai/instill.tech
token: ${{ secrets.botGitHubToken }}
- name: Modify the version in website
run: |
# On release triggers, GITHUB_REF_NAME is the release name (e.g.
# 'v0.10.0-beta')
sed -i "s/core: \".*\"/core: \"${GITHUB_REF_NAME}\"/" version.mjs
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.botGitHubToken }}
commit-message: 'chore: update Instill Core version'
title: 'docs(document): update Instill Core version'
body: Sync version with latest Core release
branch: chore/update-doc-version
base: main
draft: false
Loading