Bump nokogiri from 1.15.4 to 1.15.5 #1498
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# schedule: | |
# Daily at 8 am | |
# - cron: "0 8 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CARGO_TERM_COLOR: always | |
steps: | |
- name: Authenticate with GitHub Container Registry | |
run: | | |
echo -n $GITHUB_TOKEN | docker login -u jonchang --password-stdin ghcr.io | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
bundler-cache: true | |
- name: RuboCop | |
run: | | |
bundle exec rubocop *.rb | |
- uses: Swatinem/rust-cache@v2 | |
- run: make metadata | |
- run: make extract | |
- run: make site | |
- name: Remove public full texts | |
run: rm -rf _site/texts | |
- name: Deploy to Neocities | |
if: ${{ success() && github.ref == 'refs/heads/master' }} | |
id: neocities | |
continue-on-error: true | |
uses: bcomnes/deploy-to-neocities@v1 | |
with: | |
api_token: ${{ secrets.NEOCITIES_API_KEY }} | |
dist_dir: _site | |
cleanup: true | |
- name: Deploy to Neocities fallback | |
if: ${{ steps.neocities.outcome == 'failure' && github.ref == 'refs/heads/master' }} | |
uses: jonchang/deploy-neocities@master | |
with: | |
key: ${{ secrets.NEOCITIES_API_KEY }} | |
dir: _site | |
clean: true |