Build Site #1357
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Site | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 10 * * *' # 5AM EST | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
RUBY_YJIT_ENABLE: "1" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3' | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Install minify | |
uses: jaxxstorm/[email protected] | |
with: # Grab the latest version | |
repo: tdewolff/minify | |
tag: v2.20.14 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
- name: Build docs | |
run: bundle exec rake build | |
env: | |
OPENWEATHER_API_KEY: ${{ secrets.OPENWEATHER_API_KEY }} | |
- name: Publish to Cloudflare Pages | |
uses: cloudflare/pages-action@v1 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: 945954ae6af55e6e4af004fb7772fdc5 | |
projectName: followthesnow | |
directory: docs | |
# Optional: Enable this if you want to have GitHub Deployments triggered | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} |