Skip to content

Commit

Permalink
chore: pr for sdf release (#272)
Browse files Browse the repository at this point in the history
Co-authored-by: Luis Moreno <[email protected]>
  • Loading branch information
morenol and morenol authored Oct 7, 2024
1 parent fd10c69 commit bdda9c9
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .github/workflows/sdf-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Release SDF Doc

on:
workflow_dispatch:

jobs:
create-sdf-version:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set SDF_VERSION
run: |
SDF_VERSION=$(cat ./sdf/VERSION_SDF)
echo SDF_VERSION $SDF_VERSION
echo "SDF_VERSION=${SDF_VERSION}" >> $GITHUB_ENV
- name: install dependencies
run: npm install
- name: create sdf version
run: npm run docusaurus sdf:version $SDF_VERSION
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
add-paths: |
sdf_versioned_docs
sdf_versioned_sidebars
docusaurus.config.ts
sdf_versions.json
labels: |
bot
title: 'docs: release sdf version $SDF_VERSION [bot]'
body: |
Updating $SDF_VERSION
Auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
delete-branch: true


1 change: 1 addition & 0 deletions sdf/SDF_VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sdf-beta2
2 changes: 1 addition & 1 deletion sdf/cli/deploy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The `sdf deploy` command executes a dataflow in the worker.

After provisioning, the command enters an [interactive shell] that allows you to interact with the dataflow.

[interactive shell]: #run-interactive-shell
[interactive shell]: #deploy-interactive-shell

### `sdf deploy` command

Expand Down

0 comments on commit bdda9c9

Please sign in to comment.