Skip to content

Merge pull request #99 from rubyuy/add-rc-fastly #193

Merge pull request #99 from rubyuy/add-rc-fastly

Merge pull request #99 from rubyuy/add-rc-fastly #193

Workflow file for this run

on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: Deploy to Cloudflare Pages
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Build the website
run: bundle exec jekyll build
env:
JEKYLL_ENV: production
- name: Publish
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ruby-uy
directory: _site
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
wranglerVersion: '3'