Skip to content

Commit

Permalink
docs: Add workflow to publish GitHub pages (#2299)
Browse files Browse the repository at this point in the history
## Description

This PR adds additional workflow to publish landing page on GitHub pages
whenever there's a change on main inside the `docs` directory.

## Changes

- Added workflow for publishing landing page
- Added .nojekyll file

## Checklist

- [x] Ensured that CI passes
  • Loading branch information
tboba authored Aug 12, 2024
1 parent 23770ad commit 103d574
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish Screens landing page
env:
YARN_ENABLE_HARDENED_MODE: 0
on:
push:
branches:
- main
paths: docs/**
workflow_dispatch:

jobs:
publish:
if: github.repository == 'software-mansion/react-native-screens'
runs-on: ubuntu-latest
concurrency:
group: docs-check-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Check out
uses: actions/checkout@v4

- name: Generate landing page content
run: >-
git config --local user.email "action@github.com"
&& git config --local user.name "GitHub Action"
&& cd docs
&& yarn
&& yarn build
- name: Publish generated content to GitHub Pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
FOLDER: docs/build
BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Empty file added docs/static/.nojekyll
Empty file.

0 comments on commit 103d574

Please sign in to comment.