Skip to content

Commit

Permalink
ci(docs): update website automatically after releasing (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi authored Jun 27, 2023
1 parent 4d74453 commit 8522fe1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 29 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
name: Deploy docs

on:
push:
branches:
- main
paths:
- docs/**
- src/**
- .github/workflows/preview-docs.yml
pull_request:
paths:
- docs/**
- src/**
- .github/workflows/preview-docs.yml
workflow_call:
workflow_dispatch:

permissions:
Expand Down
24 changes: 2 additions & 22 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,5 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create PR for Documentation
id: push_image_info
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -e
echo "Start."
# Configure git and Push updates
git config --global user.email [email protected]
git config --global user.name github-actions
git config pull.rebase false
branch="automated-documentation-update-${GITHUB_RUN_ID}"
git checkout -b "${branch}"
message='Automated documentation update'
# Add / update and commit
git add "*/**/README.md"
git commit -m 'Automated documentation update [skip ci]' || export NO_UPDATES=true
# Push
if [ "$NO_UPDATES" != "true" ] ; then
git push origin "${branch}"
gh pr create --title "$message" --body "$message"
fi
- name: Update document
uses: ./github/workflows/deploy-docs.yml

0 comments on commit 8522fe1

Please sign in to comment.