Skip to content

chore(main): release 0.4.0-alpha #591

chore(main): release 0.4.0-alpha

chore(main): release 0.4.0-alpha #591

Workflow file for this run

name: Sync docs in ReadMe ๐Ÿฆ‰
on:
pull_request:
push:
branches:
# This workflow will run every time changes in the OpenAPI docs are
# pushed to the `main` branch.
- main
paths:
- 'openapi/v2/**'
jobs:
sync-openapi-private-dev:
name: Keep private (dev) docs in sync with latest pull request
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Check out repo ๐Ÿ“š
uses: actions/checkout@v3
- name: Sync OpenAPI docs ๐Ÿ“œ
uses: readmeio/rdme@v8
with:
rdme: openapi openapi/v2/service.swagger.yaml --title "๐Ÿ”ฎ Instill AI API (PR ${{ github.ref_name }})" --key=${{ secrets.README_API_KEY }} --id=671f3ec63ce9be54bc25adb8
sync-openapi-private-staging:
name: Keep private (staging) docs in sync with `main`
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
outputs:
old_release: ${{ steps.check-new-release.outputs.old_release }}
new_release: ${{ steps.check-new-release.outputs.new_release }}
steps:
- name: Check out repo ๐Ÿ“š
uses: actions/checkout@v3
with:
# Needed in check-new-release to compare with the previous commit.
fetch-depth: 0
- name: Sync OpenAPI docs ๐Ÿ“œ
uses: readmeio/rdme@v8
with:
rdme: openapi openapi/v2/service.swagger.yaml --key=${{ secrets.README_API_KEY }} --id=671f3f971dc007003da17bbc
- name: Check new release ๐Ÿ”
id: check-new-release
run: |
# If the version in the OpenAPI configuration has changed, extract
# the old and new release versions (without the "v" prefix) to
# variables.
version_file=openapi/v2/conf.proto
capture_old='^-\s\+\<version:'
capture_new='^+\s\+\<version:'
extract_version='s/.*"v\(.*\)".*/\1/'
old_version=$(git diff ${{ github.event.before }} ${{ github.event.after }} $version_file | grep $capture_old | sed $extract_version)
new_version=$(git diff ${{ github.event.before }} ${{ github.event.after }} $version_file | grep $capture_new | sed $extract_version)
if [[ $new_version ]]; then
echo "new_release=$new_version" >> $GITHUB_OUTPUT
echo "old_release=$old_version" >> $GITHUB_OUTPUT
fi
sync-openapi-public:
name: Sync public docs on new release
needs: [sync-openapi-private-staging]
runs-on: ubuntu-latest
if: needs.sync-openapi-private-staging.outputs.new_release != ''
steps:
- name: Check out repo ๐Ÿ“š
uses: actions/checkout@v3
- name: Create new version ๐Ÿš€
uses: readmeio/rdme@v8
env:
Release: ${{ needs.sync-openapi-private-staging.outputs.new_release }}
with:
rdme: versions:create ${{ env.Release }} --fork 0-beta-staging --codename=${{ env.Release}} --main true --beta true --isPublic true --key=${{ secrets.README_API_KEY }}
- name: Delete old version ๐Ÿงน
uses: readmeio/rdme@v8
env:
OldRelease: ${{ needs.sync-openapi-private-staging.outputs.old_release }}
with:
rdme: versions:delete ${{ env.OldRelease }} --key=${{ secrets.README_API_KEY }}