Skip to content

Update R4DS Pro section to mention sleep mode issue #133

Update R4DS Pro section to mention sleep mode issue

Update R4DS Pro section to mention sleep mode issue #133

Workflow file for this run

name: Deploy site
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
doc-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
- name: Install dependencies
run: bundle install
- name: Run Jekyll
# Build the site using Jekyll
run: JEKYLL_ENV=production bundle exec jekyll build
# Copy (or touch) other needed files
# .nojekyll: to tell GH Pages to not rebuild (lol)
- name: Post-Jekyll build copy files
run: |
touch _site/.nojekyll
- name: Deploy
uses: burnett01/rsync-deployments@6.0.0
with:
switches: -avzr --delete
path: _site/
remote_path: ${{ secrets.DEPLOY_PATH }}
remote_host: ${{ secrets.DEPLOY_HOST }}
remote_user: ${{ secrets.DEPLOY_USER }}
remote_key: ${{ secrets.DEPLOY_KEY }}