-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
438f4a7
commit 4aca3c9
Showing
1 changed file
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
name: Automated-Publish-Docs | ||
|
||
on: | ||
push: | ||
branches: | ||
- v*.* | ||
|
||
jobs: | ||
env: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
CURRENT_BRANCH: ${{ steps.calculate-env.outputs.current_branch }} | ||
NEWEST_VERSION: ${{ steps.calculate-env.outputs.newest_version }} | ||
ALIAS: ${{ steps.calculate-env.outputs.alias }} | ||
TITLE: ${{ steps.calculate-env.outputs.title }} | ||
SLACK_CHANNEL: "docs-review" | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get all v*.* branches | ||
id: calculate-env | ||
run: | | ||
BRANCHES=$(git branch --list --all | grep -v master | grep 'origin/v*.*' | sed -n -E 's:.*/(v[0-9]+\.[0-9]+).*:\1:p' | sort -Vu) | ||
NEWEST_VERSION=$(printf '%s\n' "${BRANCHES[@]}" | sort -V | tail -n 1) | ||
CURRENT_BRANCH=${GITHUB_REF#refs/heads/} | ||
ALIAS=$CURRENT_BRANCH-alias | ||
TITLE=$(echo $CURRENT_BRANCH | cut -b 2-) | ||
echo current_branch=$CURRENT_BRANCH >> $GITHUB_OUTPUT | ||
echo newest_version=$NEWEST_VERSION >> $GITHUB_OUTPUT | ||
echo alias=$ALIAS >> $GITHUB_OUTPUT | ||
echo title=$TITLE >> $GITHUB_OUTPUT | ||
if [[ "$CURRENT_BRANCH" == "$NEWEST_VERSION" ]]; then | ||
echo "Deploying $NEWEST_VERSION as latest..." | ||
else | ||
echo "Deploying $CURRENT_BRANCH which is not the latest version ( => $NEWEST_VERSION )..." | ||
fi | ||
install-dependencies: | ||
name: install dependencies | ||
needs: [env] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout latest | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ needs.env.outputs.CURRENT_BRANCH }} | ||
fetch-depth: 0 | ||
|
||
- name: setup python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.9' | ||
cache: 'pip' # caching pip dependencies | ||
|
||
- name: install dependencies | ||
run: | | ||
pip3 install -r requirements.txt | ||
- name: Configure Git User | ||
run: | | ||
git config user.name "circleci-runai" | ||
git config user.email "[email protected]" | ||
deploy: | ||
name: deploy mkdocs | ||
needs: [env, install-dependencies] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: deploy mkdocs latest | ||
run: | | ||
if [[ "${{ needs.env.outputs.CURRENT_BRANCH }}" == "${{ needs.env.outputs.NEWEST_VERSION }}" ]]; then | ||
echo "Deploying ${{ needs.env.outputs.NEWEST_VERSION }} as latest..." | ||
mike list | ||
git fetch origin gh-pages --depth=1 | ||
mike deploy ${{ needs.env.outputs.CURRENT_BRANCH }} ${{ needs.env.outputs.ALIAS }} latest --title=${{ needs.env.outputs.TITLE }} --push --update-aliases | ||
mike set-default latest --push | ||
mike list | ||
else | ||
echo "Deploying ${{ needs.env.outputs.CURRENT_BRANCH }} which is not the latest version ( => ${{ needs.env.outputs.NEWEST_VERSION }} )..." | ||
mike list | ||
git fetch origin gh-pages --depth=1 | ||
mike deploy ${{ needs.env.outputs.CURRENT_BRANCH }} ${{ needs.env.outputs.ALIAS }} --title=${{ needs.env.outputs.TITLE }} --push | ||
mike list | ||
fi | ||
slack-notification: | ||
name: Slack Notification | ||
needs: [env, install-dependencies, deploy] | ||
if: always() | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Slack Notification | ||
uses: rtCamp/action-slack-notify@v2 | ||
env: | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
SLACK_COLOR: ${{ contains(needs.*.result, 'failure') && 'failure' || 'success' }} | ||
SLACK_TITLE: "Airgapped package for ${{ inputs.env }} environment ${{ contains(needs.*.result, 'failure') && 'failed' || 'finished successfully' }}" | ||
SLACK_MESSAGE_ON_SUCCESS: "Docs were updated successfully for version ${{ needs.env.outputs.TITLE }}" | ||
SLACK_MESSAGE_ON_FAILURE: "Docs update FAILED for version ${{ needs.env.outputs.TITLE }}" | ||
MSG_MINIMAL: true | ||
SLACK_FOOTER: "" |