In this guide, you’ll learn how to perform routine Dapr docs maintainer and approver responsibilities. In order to successfully accomplish these tasks, you need either approver or maintainer status in the dapr/docs
repo.
To learn how to contribute to Dapr docs, review the Contributor guide.
The Dapr docs handles branching differently than most code repositories. Instead of a main
branch, every branch is labeled to match the major and minor version of a runtime release.
For the full list, visit the Docs repo.
Read the contributor’s guide for more information about release branches.
As a docs approver or maintainer, you need to perform routine upmerges to keep the pre-release branch aligned with updates to the current release branch. It is recommended to upmerge the current branch into the pre-release branch on a weekly basis.
For the following steps, treat v1.0
as the current release and v1.1
as the upcoming release.
Open Visual Studio Code to the Dapr docs repo.
From your local repo, switch to the latest branch (v1.0
) and synchronize changes:
git pull upstream v1.0
git push origin v1.0
Switch to the upcoming branch (v1.1
) and synchronize changes:
git pull upstream v1.1
git push origin v1.1
Create a new branch based off of the upcoming release:
git checkout -b upmerge_MM-DD
Open a terminal and stage a merge from the latest release into the upmerge branch:
git merge --no-ff --no-commit v1.0
In the terminal, make sure included files look accurate. Inspect any merge conflicts in VS Code. Remove configuration changes or version information that does not need to be merged.
Commit the staged changes and push to the upmerge branch (upmerge_MM-DD
).
Open a PR from the upmerge branch to the upcoming release branch (v1.1
).
Review the PR and double check that no unintended changes were pushed to the upmerge branch.
Dapr docs must align with features and updates included in the Dapr project release. Leading up to the Dapr release date, make sure:
For the following steps, treat v1.0
as the latest release and v1.1
as the upcoming release.
The release process for docs requires the following:
First, perform a docs upmerge from the latest release to the upcoming release branch.
After upmerge, prepare the docs branches for the release. In two separate PRs, you need to:
These steps will prepare the latest release branch for archival.
Open VS Code to the Dapr docs repo.
Switch to the latest branch (v1.0
) and synchronize changes:
git pull upstream v1.0
git push origin v1.0
Create a new branch based off of the latest release:
git checkout -b release_v1.0
In VS Code, navigate to /daprdocs/config.toml
.
Add the following TOML to the # Versioning
section (around line 154):
version_menu = "v1.0"
version = "v1.0"
archived_version = true
url_latest_version = "https://docs.dapr.io"
[[params.versions]]
version = "v1.2 (preview)"
url = "v1-2.docs.dapr.io"
[[params.versions]]
version = "v1.1 (latest)"
url = "#"
[[params.versions]]
version = "v1.0"
url = "https://v1-0.docs.dapr.io"
Delete .github/workflows/website-root.yml
.
Commit the staged changes and push to your branch (release_v1.0
).
Open a PR from release_v1.0
to v1.0
.
Have a docs maintainer or approver review. Wait to merge the PR until release.
These steps will prepare the upcoming release branch for promotion to latest release.
Open VS Code to the Dapr docs repo.
Switch to the upcoming release branch (v1.1
) and synchronize changes:
git pull upstream v1.1
git push origin v1.1
Create a new branch based off of the upcoming release:
git checkout -b release_v1.1
In VS Code, navigate to /daprdocs/config.toml
.
Update line 1 to baseURL - https://docs.dapr.io/
.
Update the # Versioning
section (around line 154) to display the correct versions and tags:
# Versioning
version_menu = "v1.1 (latest)"
version = "v1.1"
archived_version = false
url_latest_version = "https://docs.dapr.io"
[[params.versions]]
version = "v1.2 (preview)"
url = "v1-2.docs.dapr.io"
[[params.versions]]
version = "v1.1 (latest)"
url = "#"
[[params.versions]]
version = "v1.0"
url = "https://v1-0.docs.dapr.io"
Navigate to .github/workflows/website-root.yml
.
Update the branches which trigger the workflow:
name: Azure Static Web App Root
on:
push:
branches:
- v1.1
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- v1.1
Navigate to /README.md
.
Update the versions table:
| Branch | Website | Description |
| ------------------------------------------------------------ | -------------------------- | ------------------------------------------------------------------------------------------------ |
| [v1.1](https://github.com/dapr/docs) (primary) | https://docs.dapr.io | Latest Dapr release documentation. Typo fixes, clarifications, and most documentation goes here. |
| [v1.2](https://github.com/dapr/docs/tree/v1.2) (pre-release) | https://v1-2.docs.dapr.io/ | Pre-release documentation. Doc updates that are only applicable to v1.2+ go here. |
dapr-latest-version.html
shortcode partial to the new minor/patch version (in this example, 1.1.0
and 1.1
).release_v1.1
).release/v1.1
to v1.1
.v1.2
.In a terminal window, navigate to the docs
repo.
Switch to the upcoming release branch (v1.1
) and synchronize changes:
git pull upstream v1.1
git push origin v1.1
Create a new branch based on v1.1
and name it v1.2
:
git checkout -b release_v1.1
Rename .github/workflows/website-v1-1.yml
to .github/workflows/website-v1-2.yml
.
Open .github/workflows/website-v1-2.yml
in VS Code and update the name, trigger, and deployment target to 1.2:
name: Azure Static Web App v1.2
on:
push:
branches:
- v1.2
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- v1.2
...
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_V1_2 }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
...
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_V1_2 }}
skip_deploy_on_missing_secrets: true
Navigate to daprdocs/config.toml
and update the baseURL
to point to the new preview website:
baseURL = "https://v1-2.docs.dapr.io"
Update the # GitHub Information
and # Versioning
sections (around line 148) to display the correct versions and tags:
# GitHub Information
github_repo = "https://github.com/dapr/docs"
github_project_repo = "https://github.com/dapr/dapr"
github_subdir = "daprdocs"
github_branch = "v1.2"
# Versioning
version_menu = "v1.2 (preview)"
version = "v1.2"
archived_version = false
url_latest_version = "https://docs.dapr.io"
[[params.versions]]
version = "v1.2 (preview)"
url = "#"
[[params.versions]]
version = "v1.1 (latest)"
url = "https://docs.dapr.io"
[[params.versions]]
version = "v1.0"
url = "https://v1-0.docs.dapr.io"
Commit the staged changes and push to a new PR against the v1.2 branch.
Hold on merging the PR until after release and the other v1.0
and v1.1
PRs have been merged.
Next, create a new website for the future Dapr release. To do this, you’ll need to:
dapr/docs
repo.dapr/docs
repo cloned to your machine.Deploy a new Azure Static Web App for the future Dapr release. For this example, we use v1.1 as the future release.
In a terminal window, navigate to the iac/swa
folder in the dapr/docs
directory.
cd .github/iac/swa
Log into Azure Developer CLI (azd
) using the Dapr Azure subscription.
azd login
In the browser prompt, verify you’re logging in as Dapr and complete the login.
In a new terminal, replace the following values with the website values you prefer.
export AZURE_RESOURCE_GROUP=rg-dapr-docs-test
export IDENTITY_RESOURCE_GROUP=rg-my-identities
export AZURE_STATICWEBSITE_NAME=daprdocs-latest
Create a new azd
environment.
azd env new
When prompted, enter a new environment name. For this example, you’d name the environment something like: dapr-docs-v1-1
.
Once the environment is created, deploy the Dapr docs SWA into the new environment using the following command:
azd up
When prompted, select an Azure subscription and location. Match these to the Dapr Azure subscription.
Head over to the Dapr subscription in the Azure portal and verify that your new Dapr docs site has been deployed.
Optionally, grant the correct minimal permissions for inbound publishing and outbound access to dependencies using the Static Web App > Access control (IAM) blade in the portal.
In the Azure portal, from the new SWA you just created, naviage to Custom domains from the left side menu.
Copy the “CNAME” value of the web app.
Using your own account, submit a CNCF ticket to create a new domain name mapped to the CNAME value you copied. For this example, to create a new domain for Dapr v1.1, you’d request to map to v1-1.docs.dapr.io
.
Request resolution may take some time.
Once the new domain has been confirmed, return to the static web app in the portal.
Navigate to the Custom domains blade and select + Add.
Select Custom domain on other DNS.
Enter v1-1.docs.dapr.io
under Domain name. Click Next.
Keep Hostname record type as CNAME
, and copy the value of Value.
Click Add.
Navigate to https://v1-1.docs.dapr.io
and verify a blank website loads correctly.
You can repeat these steps for any preview versions.
release_v1.0
to v1.0
. Delete the release/v1.0 branch.release_v1.1
to v1.1
. Delete the release/v1.1 branch.release_v1.2
to v1.2
. Delete the release/v1.2 branch.Congrats on the new docs release! 🚀 🎉 🎈
SDK docs live in each of the SDK repos. Changes made to the SDK docs are pushed to the relevant SDK repo. For example, to update the Go SDK docs, you push changes to the dapr/go-sdk
repo. Until you pull the latest dapr/go-sdk
commit into the dapr/docs
current version branch, your Go SDK docs updates won’t be reflected on the Dapr docs site.
To bring updates to the SDK docs live to the Dapr docs site, you need to perform a straightforward git pull
. This example refers to the Go SDK, but applies to all SDKs.
Pull the latest upstream into your local dapr/docs
version branch.
Change into the root of the dapr/docs
directory.
Change into the Go SDK repo. This command takes you out of the dapr/docs
context and into the dapr/go-sdk
context.
cd sdkdocs/go
Switch to the main
branch in dapr/go-sdk
.
git checkout main
Pull the latest Go SDK commit.
git pull upstream main
Change into the dapr/docs
context to commit, push, and create a PR.