Skip to content

Commit

Permalink
Improve publish-docs workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ddnexus committed May 2, 2024
1 parent 0d29f8e commit 1233ed1
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 18 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Publish Docs
on:
workflow_dispatch:
push:
branches:
- 'master' # run only for master

jobs:
skip_check:
name: Skip Check
continue-on-error: true
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5.3.1
with:
concurrent_skipping: 'never'
skip_after_successful_duplicate: 'true'
paths: '[
"docs/**",
"gem/**",
"CHANGELOG.md",
"CHANGELOG_LEGACY.md",
"playground.md",
"quick-start.md",
"README.md",
"README.yml",
"retype.yml"
]'
do_not_skip: '["workflow_dispatch"]'

publish:
needs: skip_check
if: ${{ needs.skip_check.outputs.should_skip != 'true' }}
name: Publish to docs-site branch
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: retypeapp/action-build@v3
- uses: retypeapp/action-github-pages@v3
with:
branch: docs-site
update-branch: true
18 changes: 0 additions & 18 deletions .github/workflows/retype-action.yml

This file was deleted.

0 comments on commit 1233ed1

Please sign in to comment.